-
Notifications
You must be signed in to change notification settings - Fork 0
Grafana Dashboard
github-actions[bot] edited this page Mar 22, 2026
·
2 revisions
A ready-to-import sample dashboard is included in the repository. The dashboard is also published on the Grafana.com dashboard listing.
| File | Description |
|---|---|
examples/grafana/dashboard.sample.json |
Grafana dashboard JSON — import directly |
examples/grafana/dashboard-sample.jpg |
Screenshot of the sample dashboard |
- Open Grafana → Dashboards → Import
- Click Upload JSON file → select
examples/grafana/dashboard.sample.json - Select your Prometheus data source
- Click Import
Set $printer variable to your printer_name label value.

- Print status — progress %, remaining time, layer, gcode state
- Temperatures — nozzle, bed, chamber (current and target)
- Fans — big1, big2, cooling, heatbreak, secondary aux
- AMS — humidity index per unit, remaining % per slot, filament type/color
- Print stage — current stage name
- Exporter health — last success, scrape duration, connectivity
| File | Description |
|---|---|
examples/prometheus/prometheus.scrape.yml |
Scrape config snippet |
examples/prometheus/prometheus.alerts.yml |
Alert rules |
examples/prometheus/prometheus.recording.yml |
Recording rules |
- alert: BambuDoorOpenWhilePrinting
expr: |
bambulab_door_open == 1
and on(printer_name, serial)
bambulab_printer_gcode_state{state="RUNNING"} == 1
for: 2m
labels:
severity: warning
- alert: BambuExporterStale
expr: time() - bambulab_exporter_last_success_unixtime > 300
for: 2m
labels:
severity: warning
- alert: BambuSdCardAbnormal
expr: bambulab_sdcard_status_info{status="abnormal"} == 1
labels:
severity: warning