-
Notifications
You must be signed in to change notification settings - Fork 58
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
feat: add metrics to proxy #1017
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
06be9fb
feat: add metrics to proxy
SantiagoPittella ff098ac
review: update RequestContext documentation
SantiagoPittella 5f6096e
review: replace lazy_static with LazyLock
SantiagoPittella c8506a4
review: use always localhost for metrics host
SantiagoPittella 9c07da7
Merge branch 'next' into santiagopittella-add-metrics-to-proxy
bobbinth 00a76b2
review: improve separators in metrics definition
SantiagoPittella e486ffd
review: re-add metrics host configuration and default to localhost
SantiagoPittella ae669d2
review: update prometheus.yml
SantiagoPittella 9c2836e
review: add information about grafana dashboard creation and export t…
SantiagoPittella 01ddba2
review: add documentation on local installation of prometheus and gra…
SantiagoPittella dd8a928
review: add units to histograms
SantiagoPittella 1729d6c
review: rename the tag in prometheus.yml to tx_prover
SantiagoPittella 308612c
review: fix WORKER_COUNT metric update
SantiagoPittella 5e12d97
review: fix WORKER_UTILIZATION updates
SantiagoPittella 89c6933
review: update RequestQueue docs
SantiagoPittella ac33f91
review: move WORKER_UNHEALTHY update logic
SantiagoPittella 021923c
review: fix WORKER_UTILIZATION desc
SantiagoPittella 56b2621
review: rename WORKER_UTILIZATION to WORKER_BUSY
SantiagoPittella 64bb910
review: add metrics host to readme
SantiagoPittella 0ab9b38
review: mention config file by name
SantiagoPittella edb6092
review: update doc about prometheus and grafana
SantiagoPittella 80a02e7
review: add missing config field to readme example
SantiagoPittella 411b023
docs: improve prometheus.yml docs
SantiagoPittella 6d9c2f5
chore: add safety comment to metrics
SantiagoPittella 2b9fc91
chore: initialize metrics on load balancer instance
SantiagoPittella 749d5f5
chore: update dashboard
SantiagoPittella 44fe4f0
review: change unhealthy workers metric description
SantiagoPittella 370eb99
review: add missing field to README example
SantiagoPittella 8066e46
review: rewrite Grafana introduction on readme
SantiagoPittella 429b28d
review: change WORKER_COUNT metric description
SantiagoPittella 82dbe5e
review: do not count update worker requests for metrics
SantiagoPittella 7e4a3c5
review: move busy workers metric update
SantiagoPittella bc577dc
review: update grafana dashboard
SantiagoPittella ce0892d
review: update dashboard
SantiagoPittella 07c999e
review: move metric update to create response function
SantiagoPittella 5295fd2
chore: address lint errors
SantiagoPittella 3e35509
Merge branch 'next' into santiagopittella-add-metrics-to-proxy
SantiagoPittella 61b7074
review: rename grafana dashboard file
SantiagoPittella d9c1d40
review: update dashboard
SantiagoPittella File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Not from this PR but we are missing the
available_workers_polling_time_ms
in this example configThere 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 added it in this PR, it was simple enough.