Trying to setup the Apache Infrastructure integration to capture some additional apache specific metrics in new relic.
Checklist:
Infrastructure Pro license purchased - account 681654
OS version:
cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.10 (Santiago)
Apache server status module:
httpd -M | grep status
status_module (shared)
Syntax OK
Apache server status page avaialble from the server where the infra agent is installed:
curl -k https://127.78.28.87/server-status
Apache Server Status for 127.78.28.87
- Server Version: Apache/2.2.15 (Unix) PHP/5.6.40 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips mod_perl/2.0.4 Perl/v5.10.1
- Server Built: Feb 19 2018 06:33:11
- Current Time: Friday, 27-Nov-2020 10:31:56 GMT
Newrelic infra agent installed on server:
newrelic-infra-1.13.2-1.el6.x86_64 already installed and latest version.
apache-config.yml file updated with the status page:
cat /etc/newrelic-infra/integrations.d/apache-config.yml
integration_name: com.newrelic.apache
instances:
- name: apache-server-metrics
command: metrics
arguments:
status_url: https://127.78.28.87/server-status?auto
# New users should leave this property as `true`, to identify the
# monitored entities as `remote`. Setting this property to `false` (the
# default value) is deprecated and will be removed soon, disallowing
# entities that are identified as `local`.
# Please check the documentation to get more information about local
# versus remote entities:
# https://github.com/newrelic/infra-integrations-sdk/blob/master/docs/entity-definition.md
remote_monitoring: true
labels:
env: production
role: load_balancer
- name: apache-server-inventory
command: inventory
arguments:
# New users should leave this property as `true`, to identify the
# monitored entities as `remote`. Setting this property to `false` (the
# default value) is deprecated and will be removed soon, disallowing
# entities that are identified as `local`.
# Please check the documentation to get more information about local
# versus remote entities:
# https://github.com/newrelic/infra-integrations-sdk/blob/master/docs/entity-definition.md
remote_monitoring: true
labels:
env: production
role: load_balancer
However the third party integrations dashboard for apache doesnt seem to be activating.
Can you please advise?