External Monitoring Systems
How to connect external monitoring systems to your Databand installation.
Integrate New Relic Monitoring
This manual supports docker-compose
only deployments.
- Download the JSON config file from NewRelic.
- Copy JSON file into the deployment folder under
databand/config/webserver/newrelic.ini
(this path is mapped under /etc/config, so it will be used as configuration by newrelic agent) - Enable NewRelic at
custom.env
withNEW_RELIC_ENABLED=true
# custom.env
NEW_RELIC_ENABLED=true
Use make up
to launch Databand with the NewRelic agent enabled.
Enabling Datadog
By default, Datadog logging is disabled when using make up
. You need to set DATADOG_ENABLED=true
and
override the following variables to match your setup in custom.env
:
# custom.env
# add datadog.yml mod to your COMPOSE_FILE variable
COMPOSE_FILE=docker-compose.yml:./mods/datadog.yml
DATADOG_ENABLED=true
DATADOG_SITE=VALUE
DATADOG_API_KEY=VALUE
DATADOG_ENV=VALUE
Use make up
to launch Databand with the Datadog agent enabled.
Updated 12 months ago