Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to monitor apache with New Relic?

Can I monitor static pages served with Apache from New Relic?

A module perhaps I should include?

like image 859
Federico Avatar asked Sep 05 '12 20:09

Federico


2 Answers

New Relic now has plugins. One publisher has already published a plugin for Apache.

If this plugin does not monitor Apache for you in a way that is useful, you can fork this project and improve it or create your own.

like image 160
Steven Avatar answered Nov 09 '22 18:11

Steven


New Relic doesn't have an Apache monitor just yet, and the web application monitors we have see requests after Apache hands them over, so there's very little visibility there, too.

New Relic DOES support a "queueing time" measure that will let you know how long requests are sitting in your Apache and pre-web application layer. This involves modifying your Apache configuration to include a special HTTP header that includes a timestamp of when Apache started processing the request.

You can read more about that here: https://newrelic.com/docs/features/tracking-front-end-time

like image 33
dirty_joker Avatar answered Nov 09 '22 17:11

dirty_joker