Prometheus exporter for PRTG sensor metrics, written in Kotlin.
NOTE: Tests are disabled during docker build since we do not have access to a public PRTG server
docker build -t prtg-exporter:latest .
Create a application-local.yml
file with the following:
prtg:
url: https://prtg.example.com
username: myuser
passhash: 1234567890
sensors:
filter:
enabled: true
tags: pingsensor
management:
security:
enabled: false
There are 3 different filter options:
tags
: Provide an array of tagsobjids
: Provide an array of Object IDsgroups
: Provide an array of group names
Here is an incomplete example of multiple groups and a tag:
prtg:
sensors:
filter:
enabled: true
groups: VMWare, HyperV
tags: pingsensor
...
If you would like to see the URL being generated for PRTG, you can enable debug logs like so:
...
logging.level:
org.infobip.prometheus.prtgexporter.prtg: debug
...
Using the previous configuration:
docker run -it --rm -v ${PWD}/application-local.yml:/prtg/application.yml -p 8090:8090 prtg-exporter:latest
Below is an example scrape config to use with Prometheus:
scrape_configs:
- job_name: prtg_job
metrics_path: /prometheus
scrape_interval: 1m
static_configs:
- targets:
- 127.0.0.1:8090
A helm chart is provided for your convenience. Please see the chart readme for more information.
Special thanks to: