├── LICENSE ├── README.md ├── dashboard.png └── grafana ├── alloy └── config.alloy ├── dashboard └── quilibrium-dashboard.json ├── docker └── docker-compose.yml └── exporter ├── install_linux.sh ├── quilibrium_exporter.py ├── quilibrium_exporter.service └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/dashboard.png -------------------------------------------------------------------------------- /grafana/alloy/config.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/grafana/alloy/config.alloy -------------------------------------------------------------------------------- /grafana/dashboard/quilibrium-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/grafana/dashboard/quilibrium-dashboard.json -------------------------------------------------------------------------------- /grafana/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/grafana/docker/docker-compose.yml -------------------------------------------------------------------------------- /grafana/exporter/install_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/grafana/exporter/install_linux.sh -------------------------------------------------------------------------------- /grafana/exporter/quilibrium_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/grafana/exporter/quilibrium_exporter.py -------------------------------------------------------------------------------- /grafana/exporter/quilibrium_exporter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vodhash/Quilibrium-Dashboard/HEAD/grafana/exporter/quilibrium_exporter.service -------------------------------------------------------------------------------- /grafana/exporter/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==3.0.3 2 | prometheus_client==0.20.0 3 | python-dotenv==1.0.1 4 | requests --------------------------------------------------------------------------------