I need to calculate the rate per second of requests coming into a tomcat instance.
I setup JMX bridge for zabbix and I am collecting "requestCount" which is an ever increasing number of requests processed. I would like to calculate the request rate by dividing the change in requestCount by the number of seconds elapsed since last time requestCount was collected.
So something like this:
change(requestCount) / (now - lastTimeCollected)
Is there a way to know the last clocktime an item was collected?
I setup JMX bridge for zabbix and I am collecting "requestCount" which is an ever increasing number of requests processed. I would like to calculate the request rate by dividing the change in requestCount by the number of seconds elapsed since last time requestCount was collected.
So something like this:
change(requestCount) / (now - lastTimeCollected)
Is there a way to know the last clocktime an item was collected?
Comment