-
Notifications
You must be signed in to change notification settings - Fork 817
feat(reexecute/c): explicit metrics port #4418
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
Merged
+34
−12
Merged
Changes from 22 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
0178776
feat(reexecution/c): decouple metrics server and collector
RodrigoVillar 4ad3f2b
Merge branch 'master' into rodrigo/decouple-reexecution-metrics
RodrigoVillar fc83c89
Merge branch 'master' into rodrigo/decouple-reexecution-metrics
RodrigoVillar 848c6ad
docs: improve collectRegistry
RodrigoVillar be761ac
chore: set default to empty string
RodrigoVillar ca0b993
docs: benchmark script
RodrigoVillar a7cb056
chore: simplify metricsMode
RodrigoVillar d36d4ca
Merge branch 'master' into rodrigo/decouple-reexecution-metrics
RodrigoVillar c7f3185
chore: unexport metricsMode
RodrigoVillar 9e319d0
chore: clean up
RodrigoVillar 2cc0a79
chore: self-review nits
RodrigoVillar feb1681
feat(reexecute/c): explicit metrics port
RodrigoVillar c7c83bb
Merge branch 'master' into rodrigo/support-explicit-metrics-port
RodrigoVillar a5d4392
chore: nits
RodrigoVillar 4ff8126
Merge branch 'master' into rodrigo/support-explicit-metrics-port
RodrigoVillar c67da7f
chore: nits
RodrigoVillar f5e2e14
chore: unexport consts
RodrigoVillar d871c75
chore: README
RodrigoVillar 540d60f
chore: nit
RodrigoVillar bca6d48
chore: nit
RodrigoVillar e381c2c
Merge branch 'master' into rodrigo/support-explicit-metrics-port
RodrigoVillar e5283df
Merge branch 'master' into rodrigo/support-explicit-metrics-port
RodrigoVillar ac02cbf
docs: func name
RodrigoVillar 4654206
chore: unify server flags
RodrigoVillar d18bbb8
chore: nit
RodrigoVillar df721f1
fix: quote
RodrigoVillar 527b652
feat: implicitly enable metrics server if collector is enabled
RodrigoVillar f2fc794
chore: nits
RodrigoVillar f156a76
docs: README
RodrigoVillar 5bb04be
chore: nit
RodrigoVillar d0b0083
docs: flag usage
RodrigoVillar 6796474
Merge branch 'master' into rodrigo/support-explicit-metrics-port
RodrigoVillar 830e8c1
chore: nits
RodrigoVillar 3651f47
chore: revert unification of metrics server param
RodrigoVillar 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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.
Could we change the ordering here and do a pass throughout to ensure that the metric server port param is next to metrics server enabled so that these are properly clustered together by the resource that they change?
Is it possible to use a single parameter rather than a metrics server port and metrics server enabled param? For example, we could use only the port param, treat an unset param as disabled, and then treat 0 or another port param as enabling it with the specified port.
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.
Yes, I've updated the PR to use a single parameter
metrics-server-portas described above.Now that we have just one metrics server parameter, this comment is no longer applicable.
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.
Update: as requested in #4418 (comment), I've reverted the unification of the metrics server flags: 3651f47