https://github.com/satunix/mydashboard
Grafana Dashboard
https://github.com/satunix/mydashboard
Last synced: about 2 months ago
JSON representation
Grafana Dashboard
- Host: GitHub
- URL: https://github.com/satunix/mydashboard
- Owner: SATUNIX
- Created: 2025-04-08T09:44:16.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-08T09:51:04.000Z (2 months ago)
- Last Synced: 2025-04-12T09:11:22.782Z (about 2 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MyDashboard
Grafana dashboard setup for my homelab:Use the docker file to setup the proxy, use the JSON to import into grafana :)

Main data sources are the CORS proxy (use docker file in this repo)
Also uses node_exporter and Prometheus to get data into grafana:```bash
docker run -d \
--name node_exporter \
--pid="host" \
--network monitoring \
-v "/:/host:ro,rslave" \
-p 9100:9100 \
prom/node-exporter \
--path.rootfs=/host
```Modify this to how you need.