@@ -173,6 +173,10 @@ type Metrics struct {
173
173
174
174
// ApplyBlockLatency measures how long it takes to execute ApplyBlock in finalize commit step
175
175
ApplyBlockLatency metrics.Histogram `metrics_buckettype:"exprange" metrics_bucketsizes:"0.01, 10, 10"`
176
+
177
+ StepLatency metrics.Gauge `metrics_labels:"step"`
178
+ lastRecordedStepLatencyNano int64
179
+ StepCount metrics.Gauge `metrics_labels:"step"`
176
180
}
177
181
178
182
// RecordConsMetrics uses for recording the block related metrics during fast-sync.
@@ -249,6 +253,29 @@ func (m *Metrics) MarkStep(s cstypes.RoundStepType) {
249
253
stepTime := time .Since (m .stepStart ).Seconds ()
250
254
stepName := strings .TrimPrefix (s .String (), "RoundStep" )
251
255
m .StepDuration .With ("step" , stepName ).Observe (stepTime )
256
+ m .StepCount .With ("step" , s .String ()).Add (1 )
252
257
}
253
258
m .stepStart = time .Now ()
254
259
}
260
+
261
+ func (m * Metrics ) MarkStepLatency (s cstypes.RoundStepType ) {
262
+ now := time .Now ().UnixNano ()
263
+ m .StepLatency .With ("step" , s .String ()).Add (float64 (now - m .lastRecordedStepLatencyNano ))
264
+ m .lastRecordedStepLatencyNano = now
265
+ }
266
+
267
+ func (m * Metrics ) ClearStepMetrics () {
268
+ for _ , st := range []cstypes.RoundStepType {
269
+ cstypes .RoundStepNewHeight ,
270
+ cstypes .RoundStepNewRound ,
271
+ cstypes .RoundStepPropose ,
272
+ cstypes .RoundStepPrevote ,
273
+ cstypes .RoundStepPrevoteWait ,
274
+ cstypes .RoundStepPrecommit ,
275
+ cstypes .RoundStepPrecommitWait ,
276
+ cstypes .RoundStepCommit ,
277
+ } {
278
+ m .StepCount .With ("step" , st .String ()).Set (0 )
279
+ m .StepLatency .With ("step" , st .String ()).Set (0 )
280
+ }
281
+ }
0 commit comments