Skip to content

Commit

Permalink
feat: prefix key count metric
Browse files Browse the repository at this point in the history
  • Loading branch information
aimxhaisse committed Nov 20, 2023
1 parent e2ab9f8 commit 0b460f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eth_validator_watcher/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'"Infinite."',
]

keys_count = Gauge(
metric_keys_count = Gauge(
"keys_count",
"Keys count",
)
Expand Down Expand Up @@ -210,7 +210,7 @@ def get_our_pubkeys(
)

our_pubkeys = pubkeys_from_file | pubkeys_from_web3signer
keys_count.set(len(our_pubkeys))
metric_keys_count.set(len(our_pubkeys))
return our_pubkeys


Expand Down

0 comments on commit 0b460f9

Please sign in to comment.