You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
I notice that the collator does not have polkadot_node_is_active_validator metric and I did not find any alternative. But relaychain part of the collator reports polkadot_node_is_active_validator=0 which creates false positive alerts.
can we have polkadot_node_is_active_validator or a similar metric for parachain
can we remove polkadot_node_is_active_validator from relaychain part of the collator if the --validator flag is not provided
# docker run -p 9615:9615 -it --rm parity/polkadot:v0.9.42 --prometheus-external --validator
curl -s 127.0.0.1:9615/metrics | grep polkadot_node_is_active_validator
# HELP polkadot_node_is_active_validator Tracks if the validator is in the active set. Updates at session boundary.
# TYPE polkadot_node_is_active_validator gauge
polkadot_node_is_active_validator{chain="polkadot"} 0
Normal node
# docker run -p 9615:9615 -it --rm parity/polkadot:v0.9.42 --prometheus-external
curl -s 127.0.0.1:9615/metrics | grep polkadot_node_is_active_validator
# empty line
It will be nice to have constancy between the standalone relaychain and embedded relaycahin in collator.
I notice that the collator does not have
polkadot_node_is_active_validator
metric and I did not find any alternative. But relaychain part of the collator reportspolkadot_node_is_active_validator=0
which creates false positive alerts.polkadot_node_is_active_validator
or a similar metric for parachainpolkadot_node_is_active_validator
from relaychain part of the collator if the--validator
flag is not providedExample of metrics:
cli which was used to run a node, as you can see no flag
--validator
only--collator
but it set for parachain.The text was updated successfully, but these errors were encountered: