Tibco Administrator

1.4k Views Asked by At

Where does the Tibco Administrator GUI get the status of applications and services?

In my project, I have a requirement to read the status of all the services listed in Tibco admin. I don't have Tibco hawk installed and I need some other alternative other than tibco hawk.

6

There are 6 best solutions below

0
On

Each machine/host in TIBCO Administrator domain will be running a HawkAgent, and it is responsible gathering application status such as "Stopped", "Running".

If you have a requirement to script and gather application status, you can use the AppStatusCheck (comes with TRA 5.8 onwards) to fetch the applications and their status in an XML format.

0
On

What you can do is to store all the components status in a file with the following command :

AppStatusCheck -user ${ADMIN_USERNAME} -pw ${ADMIN_PASSWORD} -domain ${ADMIN_DOMAIN} -outfile /tmp/status.xml

And after that, you can use sed command or xmllint linux command to extract the status of all components.

0
On

If you have a machine added to a domain, then that machine automatically installs tibco TRA Hawkagent, which sends information to Admnistrator about the status of the application.

0
On

You can query the status of the applications via appmanage

0
On

You can used the tra utility 'AppStatusCheck' which will return the status of that particular application deployed over domain. You can used this utility in shell script to used it much better and efficient way.

0
On

As you don't want to use HAWK, the other way on UNIX box will be PID of the services. HAWK will be using the same in the background. However it is bit tricky though.