Nextcloud prometeus exporter

This commit is contained in:
Florian Zirker 2023-11-02 13:07:28 +01:00
parent fc106060b7
commit 334331e4a9
4 changed files with 34 additions and 7 deletions

View file

@ -92,9 +92,20 @@ services:
labels:
- "docker.group=monitoring"
# https://github.com/xperimental/nextcloud-exporter
nextcloud-exporter:
image: ghcr.io/xperimental/nextcloud-exporter
networks:
- monitoring
environment:
- NEXTCLOUD_SERVER=${NEXTCLOUD_URL}
- NEXTCLOUD_AUTH_TOKEN=${NEXTCLOUD_MONITORING_AUTH_TOKEN}
- NEXTCLOUD_LISTEN_ADDRESS=:9205
labels:
- "docker.group=monitoring"
##################################################################
# here starts data collection
# here starts data collection of local host
telegraf_host:
image: telegraf:${TELEGRAF_VERSION}

View file

@ -35,3 +35,8 @@ scrape_configs:
- job_name: "grafana"
static_configs:
- targets: ["grafana:3000"]
- job_name: 'nextcloud'
scrape_interval: 60s
static_configs:
- targets: ['nextcloud-exporter:9205']