-
Notifications
You must be signed in to change notification settings - Fork 909
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
Rename bookkeeper metrics to specify OpenMetrics #3406
Merged
hezhangjian
merged 1 commit into
apache:master
from
hezhangjian:rename-bookkeeper-metrics
Jul 16, 2022
Merged
Rename bookkeeper metrics to specify OpenMetrics #3406
hezhangjian
merged 1 commit into
apache:master
from
hezhangjian:rename-bookkeeper-metrics
Jul 16, 2022
Conversation
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
eolivelli
approved these changes
Jul 15, 2022
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.
LGTM
hangc0276
reviewed
Jul 15, 2022
bookkeeper-server/src/main/java/org/apache/bookkeeper/client/BookieWatcherImpl.java
Show resolved
Hide resolved
bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/BookKeeperServerStats.java
Show resolved
Hide resolved
@hangc0276 I don't think it's necessary to modify these variable names. Let's keep the |
hangc0276
approved these changes
Jul 16, 2022
11 tasks
Ghatage
pushed a commit
to sijie/bookkeeper
that referenced
this pull request
Jul 12, 2024
### Motivation See https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md A COUNTER needs `metrics_name_total` or `metrics_name_created` This PR contains metric name broken changes. ### Modifications Rename counter's `_count` to `_total` ### metrics name broken changes - rename `FAILED_TO_RESOLVE_NETWORK_LOCATION_COUNTER` to `FAILED_TO_RESOLVE_NETWORK_LOCATION_TOTAL` - rename `ENSEMBLE_NOT_ADHERING_TO_PLACEMENT_POLICY_COUNT` to `ENSEMBLE_NOT_ADHERING_TO_PLACEMENT_POLICY_TOTAL` - rename `ACTIVE_ENTRY_LOG_COUNT` to `ACTIVE_ENTRY_LOG_TOTAL` - rename `MAJOR_COMPACTION_COUNT` to `MAJOR_COMPACTION_TOTAL` - rename `MINOR_COMPACTION_COUNT` to `MINOR_COMPACTION_TOTAL` - rename `ACTIVE_LEDGER_COUNT` to `ACTIVE_LEDGER_TOTAL` - rename `DELETED_LEDGER_COUNT` to `DELETED_LEDGER_TOTAL` - rename `JOURNAL_FORCE_WRITE_GROUPING_COUNT` to `JOURNAL_FORCE_WRITE_GROUPING_TOTAL` ### Also see - apache/pulsar#13785 - apache/pulsar#16591 - apache/pulsar#16610 - apache/pulsar#16611
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.
Motivation
See https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md
A COUNTER needs
metrics_name_total
ormetrics_name_created
This PR contains metric name broken changes.
Modifications
Rename counter's
_count
to_total
metrics name broken changes
FAILED_TO_RESOLVE_NETWORK_LOCATION_COUNTER
toFAILED_TO_RESOLVE_NETWORK_LOCATION_TOTAL
ENSEMBLE_NOT_ADHERING_TO_PLACEMENT_POLICY_COUNT
toENSEMBLE_NOT_ADHERING_TO_PLACEMENT_POLICY_TOTAL
ACTIVE_ENTRY_LOG_COUNT
toACTIVE_ENTRY_LOG_TOTAL
MAJOR_COMPACTION_COUNT
toMAJOR_COMPACTION_TOTAL
MINOR_COMPACTION_COUNT
toMINOR_COMPACTION_TOTAL
ACTIVE_LEDGER_COUNT
toACTIVE_LEDGER_TOTAL
DELETED_LEDGER_COUNT
toDELETED_LEDGER_TOTAL
JOURNAL_FORCE_WRITE_GROUPING_COUNT
toJOURNAL_FORCE_WRITE_GROUPING_TOTAL
Also see