Adapt receivecommits metrics

The metric name was changed in I1aae3bc0c0fe430086221503b8e529fa06967517.

Change-Id: I466b01f05a2f679ef49437998992f5aa678bd58c
This commit is contained in:
Thomas Draebing 2021-10-29 10:14:51 +02:00
parent 37dc340371
commit 4a9d167637

View file

@ -26,22 +26,22 @@ dashboard.new(
.addTemplate(variables.replica) .addTemplate(variables.replica)
.addPanel( .addPanel(
latency_panel.new( latency_panel.new(
metric='receivecommits_latency_total', metric='receivecommits_latency_per_push_total',
title='TOTAL receive-commits latency' title='TOTAL receive-commits latency per push'
), ),
gridPos=gridPos.new(0, 0, 1) gridPos=gridPos.new(0, 0, 1)
) )
.addPanel( .addPanel(
latency_panel.new( latency_panel.new(
metric='receivecommits_latency_AUTOCLOSED', metric='receivecommits_latency_per_push_AUTOCLOSED',
title='AUTOCLOSED receive-commits latency' title='AUTOCLOSED receive-commits latency per push'
), ),
gridPos=gridPos.new(1, 0) gridPos=gridPos.new(1, 0)
) )
.addPanel( .addPanel(
latency_panel.new( latency_panel.new(
metric='receivecommits_latency_CREATE_REPLACE', metric='receivecommits_latency_per_push_CREATE_REPLACE',
title='CREATE/REPLACE receive-commits latency' title='CREATE/REPLACE receive-commits latency per push'
), ),
gridPos=gridPos.new(1, 1) gridPos=gridPos.new(1, 1)
) )