Skip to content
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

jmx filter negative values in yaml #13589

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

SylvainJuge
Copy link
Contributor

Fixes #13461
Unblocks #13392

Adds a new dropNegativeValues attribute in YAML that enables to filter negative values which are commonly produced by MBean implementations to indicate metric is not available.

@SylvainJuge SylvainJuge marked this pull request as ready for review March 28, 2025 09:10
@SylvainJuge SylvainJuge requested a review from a team as a code owner March 28, 2025 09:10
@Override
protected Number extractNumericalAttribute(
MBeanServerConnection connection, ObjectName objectName) {
Number v = super.extractNumericalAttribute(connection, objectName);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe you wanted to call extractor.extractNumericalAttribute(connection, objectName) instead of super. ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, since we don't really delegate to the provided extractor, we just override the method implementation. I agree that it probably needs some refactor to simplify things a bit and make the implementation more clear.

test1.negativeValues = false;
BeanAttributeExtractor rawExtractor = BeanAttributeExtractor.fromName(attributeName);
BeanAttributeExtractor filteringExtractor =
BeanAttributeExtractor.filterNegativeValues(rawExtractor);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[minor] Assuming you are going to do a real wrapping (see comment for filterNegativeValues) maybe it would be better to wrap some subtype of BeanAttributeExtractor, so we can be sure we do not call super.* method in wrapper class.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

JMX Metrics with yaml: need the ability to filter negative values
2 participants