Monitoring

All topics on the Atoms in any Enterprise Dynamics Library.
Post Reply
Steffen
Posts: 3
Joined: Tuesday 19 June, 2012 - 16:25

Monitoring

Post by Steffen »

Hey there,

I would like to monitor some queue and some server atoms. To monitor a single queue atom I use the generic monitor. But what do I use the to monitor the time a server is in service or the workload. Besides I was wondering how I can monitor 3 queues/3server in one monitor atom.

Thanks for your help!
MarvinH
Posts: 93
Joined: Tuesday 25 January, 2011 - 11:07
Contact:

Re: Monitoring

Post by MarvinH »

Hello!

To view the time a server is in service you can use the Status Histogram, which you connect to the central channel of the server of interest. Further you can use the Generic Monitor and select the content or output to be displayed to see the workload.

To display values over several atoms, you can use your own 4DScript expression. For example, if you want to display the content of 3 servers, connect central channel of the servers of interest to the Generic Monitor through input channel 1, 2 and 3. Then in the "Variable to display" of the Generic Monitor, you can use option 11 with the following script:

Code: Select all

Content( In( 1, c) ) + Content( In( 2, c) ) + Content( In( 3, c ) )
Unfortunately it is not possible to display several lines within one single Generic Monitor.

Good luck!

Kind regards,

Marvin
Post Reply