Skip to content

Commit bba1c2e

Browse files
add wav metrics to sign2 (#82)
* add wav metrics to sign2 * Update grafana/provisioning/dashboards/sign2.dashboard.py Co-authored-by: Evan Ugarte <36345325+evanugarte@users.noreply.github.com> * address sggested change --------- Co-authored-by: Evan Ugarte <36345325+evanugarte@users.noreply.github.com>
1 parent 9eb392c commit bba1c2e

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

grafana/provisioning/dashboards/sign2.dashboard.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,24 @@
7272
unit=SECONDS
7373
)
7474

75+
wrapper.AddPanel(
76+
title="WAV Last Sent",
77+
queries=[
78+
ExpressionAndLegendPair(
79+
'time() - wav_last_sent{job="sce-sign2"}',
80+
)
81+
],
82+
unit=SECONDS
83+
)
84+
85+
wrapper.AddPanel(
86+
title="WAV Last Updated",
87+
queries=[
88+
ExpressionAndLegendPair(
89+
'time() - wav_last_updated{job="sce-sign2"}',
90+
)
91+
],
92+
unit=SECONDS
93+
)
94+
7595
dashboard = wrapper.Render()

0 commit comments

Comments
 (0)