-
Notifications
You must be signed in to change notification settings - Fork 54
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
chore: added metrics for total proofs and remaining proofs per epoch. #3181
base: master
Are you sure you want to change the base?
Conversation
You can find the image built from this PR at
Built from a207973 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks so much! I see the new metrics, but where are the panels mentioned in the PR description?
@@ -62,6 +62,16 @@ declarePublicGauge( | |||
"time taken to import membership credentials", | |||
) | |||
|
|||
declarePublicCounter( | |||
waku_rln_proofs_generated_total, | |||
"number of RLN proofs generated by this light client for the current epoch", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this isn't for light clients specifically
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks ! will improve terminology.
Actually, I also raised a PR for the nwaku-compose repository to address the dashboard. I thought it would be better to get approval there first and then copy it here. |
Oh got it! So better to change this PR name to reflect that what you're adding here are metrics and not a Grafana panel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
This PR adds two Grafana panels: one displays the total number of RLN proofs generated till now, and the other shows the remaining RLN proofs per epoch. These panels enable users to monitor the available proofs for the upcoming minutes effectively.
close #3024