Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions harnesses/bridge-monitor/cmd/monitor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,12 @@ func (e *Executor) recordExecutionMetrics(result *ExecutionResult) {
result.Route.ToToken,
amountStr,
e.region,
// chain dimension label, same convention as every quote path
// (mobula_bridge.go etc). This 8th label was missed when the
// metrics gained the chain dimension, and because execution was
// paused in prod the mismatch only surfaced at the first real
// single-test (panic: inconsistent label cardinality).
result.Route.ToChain,
}

// Record latencies
Expand Down
Loading