-
Notifications
You must be signed in to change notification settings - Fork 932
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
base: main
Are you sure you want to change the base?
Conversation
…nstrumentation into jmx-filter-negative
...ibrary/src/main/java/io/opentelemetry/instrumentation/jmx/engine/BeanAttributeExtractor.java
Outdated
Show resolved
Hide resolved
@Override | ||
protected Number extractNumericalAttribute( | ||
MBeanServerConnection connection, ObjectName objectName) { | ||
Number v = super.extractNumericalAttribute(connection, objectName); |
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.
Maybe you wanted to call extractor.extractNumericalAttribute(connection, objectName) instead of super. ?
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.
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); |
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.
[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.
…nstrumentation into jmx-filter-negative
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.