Adding telegraf, influxdb and grafana for monitoring. Extend netdata to use account.

This commit is contained in:
2021-12-23 08:32:34 +01:00
parent afbf1c882a
commit 0a55e0a134
2 changed files with 60 additions and 1 deletions

5
.env
View File

@@ -3,3 +3,8 @@ REDIS_PW=230skdfjl~23409
NEXTCLOUD_ADMIN_USER=chris NEXTCLOUD_ADMIN_USER=chris
NEXTCLOUD_ADMIN_PW=lmaa,dw. NEXTCLOUD_ADMIN_PW=lmaa,dw.
# InfluxDB options
INFLUXDB_DB=influx
INFLUXDB_ADMIN_USER=admin
INFLUXDB_ADMIN_PASSWORD=admin

View File

@@ -15,6 +15,10 @@ volumes:
name: netdatacache name: netdatacache
apc: apc:
name: apc name: apc
telegraf:
name: telegraf
influxdb:
name: influxdb
services: services:
netdata: netdata:
@@ -24,6 +28,10 @@ services:
restart: unless-stopped restart: unless-stopped
cap_add: cap_add:
- SYS_PTRACE - SYS_PTRACE
environment:
- NETDATA_CLAIM_TOKEN=whnDRS4-Z0fJH9P2Y01jHXeBKb6cpzIxsRsFFiuCbE0u_QhDciI4V8NrftAmu8YnWDd9KRX5-bGlU8G_s7F-Ux6lYVkVtdqdjXRPfiTMm4JN8wpJGnm2CedKAP7FiFIp8spaLx4
- NETDATA_CLAIM_URL=https://app.netdata.cloud
- NETDATA_CLAIM_ROOMS=a427cb5f-a572-4bbf-90d8-ad97144960c1
security_opt: security_opt:
- apparmor:unconfined - apparmor:unconfined
volumes: volumes:
@@ -68,5 +76,51 @@ services:
- "traefik.http.routers.apc.service=apc" - "traefik.http.routers.apc.service=apc"
- "traefik.http.services.apc.loadbalancer.server.port=80" - "traefik.http.services.apc.loadbalancer.server.port=80"
- "com.centurylinklabs.watchtower.enable=false" - "com.centurylinklabs.watchtower.enable=false"
ports:
- "3551:3551/tcp"
- "3551:3551/udp"
telegraf:
image: telegraf:alpine
container_name: telegraf
networks:
- internal
volumes:
- telegraf:/etc/telegraf/
depends_on:
- influxdb
influxdb:
image: influxdb:alpine
container_name: influxdb
env_file: ../.env
volumes:
- influxdb:/var/lib/influxdb
networks:
- proxy
- internal
labels:
- "traefik.enable=true"
- "traefik.http.routers.influx.rule=Host(`influx.lan`)"
- "traefik.http.routers.influx.entrypoints=web"
- "traefik.http.routers.influx.service=influx"
- "traefik.http.services.influx.loadbalancer.server.port=8086"
grafana:
image: grafana/grafana-oss
container_name: grafana
hostname: grafana.lan
restart: unless-stopped
depends_on:
- influxdb
networks:
- proxy
- internal
labels:
- "traefik.enable=true"
- "traefik.http.routers.grafana.rule=Host(`grafana.lan`)"
- "traefik.http.routers.grafana.entrypoints=web"
- "traefik.http.routers.grafana.service=grafana"
- "traefik.http.services.grafana.loadbalancer.server.port=3000"