Open
Conversation
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
Cardano node metrics update
In the new version of cardano-node the following metrics were removed:
• cardano_node_metrics_peers_connectedPeers_int
• cardano_node_metrics_Forge_adopted_int
We replaced these metrics with their current equivalents (peerSelection_, Forge_ + slotsMissedNum_int) to keep dashboards functional.
Grafana dashboard changes
• Replaced the Clock widget (not natively supported by Grafana by default) with a Stat panel using PromQL time() * 1000 and unit dateTimeAsIso to display the current time.
• Updated Grafana dashboard plugins to the latest supported versions.
Motivation
• Ensure compatibility of monitoring dashboards with the latest cardano-node version.
• Remove reliance on deprecated plugins (Clock) and switch to native PromQL/Grafana functionality.
• Keep dashboards up to date and avoid errors from missing metrics.
Notes
• Please verify dashboards after deployment to ensure new metrics map correctly to widgets.
• Backward compatibility with older cardano-node versions is not preserved.