Update EthLambda metrics implementation status#27
Open
pablodeymo wants to merge 1 commit intoleanEthereum:mainfrom
Open
Update EthLambda metrics implementation status#27pablodeymo wants to merge 1 commit intoleanEthereum:mainfrom
pablodeymo wants to merge 1 commit intoleanEthereum:mainfrom
Conversation
39 metrics fully implemented (✅), 3 with partial support (📝). The 3 partial metrics (lean_current_slot, lean_validators_count, lean_connected_peers) are updated on events rather than computed fresh on each Prometheus scrape.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates the EthLambda column in metrics.md to reflect current implementation status. All 42 metrics have been audited against the ethlambda source code.
Partial support details
The following metrics are implemented but updated on events rather than computed fresh on each Prometheus scrape:
lean_current_slotlean_validators_countlean_connected_peersVerification
Each metric was verified by searching for its exact name string in the Rust source code, confirming both registration (via
register_*!macros) and active usage (.set(),.inc(),.observe()). Full audit details available in docs/metrics.md.