29 Mar 2019 04:51 PM
Dear community!
I need generate a dashboard (on home dashboad) with Apache metrics like busy threads and count workers. ¿Is it posible?
Thanks in advance
01 Apr 2019 07:44 AM
Hi, I found the following:
Thorsten
02 Apr 2019 12:31 PM
@Thorsten R. I think @Emiliano B. refers to metrics for Apache HTTPD, not to Apache Tomcat.
13 Feb 2020 08:31 PM
looking for same info. Do we have ability to monitor apache httpd metrics like below ones?
ServerLimit 16
StartServers 2
MaxRequestWorkers 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
14 Feb 2020 04:25 PM
Hi Raj,
I do not believe the metrics you have listed are captured out of the box with Dynatrace.
The metrics I see on the apache httpd page are:
Requests, Traffice, busy threads, Idle threads, queue time, etc.
For these specific metrics I believe the easiest way to capture them is through creating a OneAgent Plugin. Pasting the documentation for writing a plugin below:
https://www.dynatrace.com/support/help/extend-dynatrace/plugins/oneagent-plugins/
Thanks
-Dallas
15 Feb 2020 12:34 PM
These, in particular, are not metrics but configuration settings. To get them you will need to either parse the configuration files or use the info module and parse them as shown here:
https://stackoverflow.com/questions/27152943/how-can-i-view-the-complete-httpd-configuration
Definitely you will need to write a oneagent plugin to get this information via Dynatrace. I'd recommend pushing the information as process level metadata.
However, writing such plugin requires some effort and it does make sense only if you need it for many apache instances.
27 Feb 2020 04:25 PM
Hello Emiliano,
06 Aug 2020 04:17 PM
Hello David,
Is this plugin public? Can I find it on GihHub, for example?