You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some metrics like jvm.cpu.time and jvm.cpu.recent_utilization, the JVM can return a negative value as the underlying data might not be available as indicated by OperatingSystemMXBean.getCpuLoad() javadoc.
This corner case is properly handled in the runtime-telemetry implementation for JVM metrics as seen here, but this is not the case for metrics that are defined in YAML, hence preventing to being 100% compliant with semconv for JVM metrics.
Also, the same issue is likely to happen with other systems for which metrics are captured through a yaml definition because returning a negative value is a common pattern to indicate something is not available.
- bean: java.lang:type=OperatingSystemprefix: jvm.mapping:
# jvm.cpu.recent_utilizationProcessCpuLoad:
metric: cpu.recent_utilizationtype: gaugeunit: '1'negativeValues: falsedesc: Recent CPU utilization for the process as reported by the JVM.
For some metrics like
jvm.cpu.time
andjvm.cpu.recent_utilization
, the JVM can return a negative value as the underlying data might not be available as indicated byOperatingSystemMXBean.getCpuLoad()
javadoc.This corner case is properly handled in the runtime-telemetry implementation for JVM metrics as seen here, but this is not the case for metrics that are defined in YAML, hence preventing to being 100% compliant with semconv for JVM metrics.
Also, the same issue is likely to happen with other systems for which metrics are captured through a yaml definition because returning a negative value is a common pattern to indicate something is not available.
This was discovered while working on #13392 where we try to capture JVM metrics that are compliant with semantic conventions for java runtime.
Support for this could look like this in yaml:
This is currently blocking progress on #13392
Suggestions on naming, feedback and suggestions are welcome:
discardNegativeValues
:true
to remove negative valuesdropNegative
negativeValues
:true
(default),false
would discard valuesI tend to prefer
negativeValues
as it's short and it sounds a bit more positive (pun not intentional here).The text was updated successfully, but these errors were encountered: