Skip to content

metrics: bump #3274

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2025
Merged
Show file tree
Hide file tree
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
11 changes: 9 additions & 2 deletions execution_chain/db/aristo/aristo_init/rocks_db/rdb_get.nim
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,19 @@ when defined(metrics):
"aristo_rdb_vtx_lru_total",
"Vertex LRU lookup (hit/miss, world/account, branch/leaf)",
labels = ["state", "vtype", "hit"],
standardType = "counter",
)
rdbKeyLruStatsMetric {.used.} = RdbKeyLruCounter.newCollector(
"aristo_rdb_key_lru_total", "HashKey LRU lookup", labels = ["state", "hit"]
"aristo_rdb_key_lru_total",
"HashKey LRU lookup",
labels = ["state", "hit"],
standardType = "counter",
)
rdbBranchLruStatsMetric {.used.} = RdbBranchLruCounter.newCollector(
"aristo_rdb_branch_lru_total", "Branch LRU lookup", labels = ["state", "hit"]
"aristo_rdb_branch_lru_total",
"Branch LRU lookup",
labels = ["state", "hit"],
standardType = "counter",
)

method collect*(collector: RdbVtxLruCounter, output: MetricHandler) =
Expand Down
2 changes: 1 addition & 1 deletion vendor/nim-eth
Submodule nim-eth updated 1 files
+13 −13 eth/utp/utp_socket.nim
Loading