overview dashboard: Hide UNEDITED and DONE states so the others are visible

pull/157/head
Mike Lang 5 years ago
parent 8a65d18f74
commit ac98d67853

@ -153,9 +153,10 @@ grafana.dashboard({
name: "Database events by state",
axis: {min: 0, label: "events"},
stack: true,
tooltip: "Does not include UNEDITED or DONE events",
expressions: {
"{{state}}": |||
sum(event_counts) by (state)
sum(event_counts{state!="UNEDITED", state!="DONE"}) by (state)
|||,
},
},

Loading…
Cancel
Save