Skip to content

Instantly share code, notes, and snippets.

@hunzo
Last active May 16, 2024 08:27
Show Gist options
  • Save hunzo/caef877194d240037cb0eeed34d57681 to your computer and use it in GitHub Desktop.
Save hunzo/caef877194d240037cb0eeed34d57681 to your computer and use it in GitHub Desktop.
proxmox mornitor with influxdb and grafana

Proxmox monitor with influxdb and grafana

grafana dashboard id: 15356

  • grafana default user/password: admin/admin
services:
  influxdb:
    image: influxdb:2
    volumes:
      - influxdb-storage:/var/lib/influxdb
    restart: always
    ports:
      - 8086:8086
    environment:
      - TZ=Asia/Bangkok
    networks:
      - net
  grafana:
    image: grafana/grafana
    volumes:
      - grafana-storage:/var/lib/grafana
    restart: always
    environment:
      - TZ=Asia/Bangkok
    ports:
      - 80:3000
    networks:
      - net
volumes:
  grafana-storage:
  influxdb-storage:
networks:
  net:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment