forked from jfindley/newrelic_exporter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnewrelic_exporter.yml
42 lines (30 loc) · 1.21 KB
/
newrelic_exporter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# NewRelic API key. Mandatory
api.key:
# API location
api.server: https://api.newrelic.com
# Period of data to request, in seconds
api.period: 60
# Period of time to wait for an API response
api.timeout: 15s
# Name of NewRelic service to acquire metrics from.
# Mandatory
# This is part of API path in between of API version and app ID.
# See NR API docs for details: https://rpm.newrelic.com/api/explore
api.service:
# Time to cache application list. 0 by default
api.apps-list-cache-time: 1h
# Time to cache metric names list. 0 by default
api.metric-names-cache-time: 1h
# Filter available applications
api.include-apps:
# List of filters for metric names. Corresponds to 'name' parameter of metrics.json. Each line will generate at least one separate API request so use them wisely.
# At least one should be present
api.include-metric-filters:
# List of value names to collect. If empty - all possible values will be collected
api.include-values:
# Address to listen on for web interface and telemetry. Port defaults to 9126.
web.listen-address: ":9126"
# Path under which to expose metrics. Defaults to '/metrics'
web.telemetry-path: "/metrics"
# Debugging proxy address
#debug.proxy-address: "https://localhost:8888"