Skip to content

Commit 540a613

Browse files
authored
Add step specific metrics (#273)
1 parent 2504caf commit 540a613

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

internal/consensus/metrics.gen.go

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/consensus/metrics.go

+27
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,10 @@ type Metrics struct {
173173

174174
// ApplyBlockLatency measures how long it takes to execute ApplyBlock in finalize commit step
175175
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"`
176180
}
177181

178182
// RecordConsMetrics uses for recording the block related metrics during fast-sync.
@@ -249,6 +253,29 @@ func (m *Metrics) MarkStep(s cstypes.RoundStepType) {
249253
stepTime := time.Since(m.stepStart).Seconds()
250254
stepName := strings.TrimPrefix(s.String(), "RoundStep")
251255
m.StepDuration.With("step", stepName).Observe(stepTime)
256+
m.StepCount.With("step", s.String()).Add(1)
252257
}
253258
m.stepStart = time.Now()
254259
}
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+
}

internal/consensus/state.go

+4
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,7 @@ func (cs *State) SetProposalAndBlock(
659659

660660
func (cs *State) updateHeight(height int64) {
661661
cs.metrics.Height.Set(float64(height))
662+
cs.metrics.ClearStepMetrics()
662663
cs.roundState.SetHeight(height)
663664
}
664665

@@ -1043,6 +1044,8 @@ func (cs *State) handleMsg(ctx context.Context, mi msgInfo, fsyncUponCompletion
10431044
err error
10441045
)
10451046

1047+
cs.metrics.MarkStepLatency(cs.roundState.Step())
1048+
10461049
msg, peerID := mi.Msg, mi.PeerID
10471050

10481051
switch msg := msg.(type) {
@@ -1179,6 +1182,7 @@ func (cs *State) handleTimeout(
11791182
// the timeout will now cause a state transition
11801183
cs.mtx.Lock()
11811184
defer cs.mtx.Unlock()
1185+
cs.metrics.MarkStepLatency(rs.Step)
11821186

11831187
switch ti.Step {
11841188
case cstypes.RoundStepNewHeight:

0 commit comments

Comments
 (0)