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
Fix the behaviour of asynchronous counters and up-down counters. (#11332)
Fix the behaviour of asynchronous counters and up-down counters.
Unlike synchronous counters which take the increment/delta value,
asynchronous callbacks report the absolute value of the counter.
Co-authored-by: devflow.devflow-routing-intake <devflow.devflow-routing-intake@kubernetes.us1.ddbuild.io>
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/OtelInstrumentType.java
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,21 @@
2
2
3
3
publicenumOtelInstrumentType {
4
4
// same order as io.opentelemetry.sdk.metrics.InstrumentType
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/data/OtelDoubleSum.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/data/OtelDoubleValue.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/data/OtelHistogramSketch.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/data/OtelLongSum.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/data/OtelLongValue.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/data/OtelMetricStorage.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-shim/src/main/java/datadog/opentelemetry/shim/metrics/OtelDoubleCounter.java
0 commit comments