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
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/OtlpHistogramPoint.java
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,21 @@ public final class OtlpHistogramPoint extends OtlpDataPoint {
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/main/java/datadog/trace/bootstrap/otel/metrics/export/OtlpMetricsProto.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,10 @@ public static byte[] recordDataPointMessage(GrowableBuffer buf, OtlpDataPoint po
117
117
writeI64(buf, (long) histogram.count);
118
118
writeTag(buf, 5, I64_WIRE_TYPE);
119
119
writeI64(buf, histogram.sum);
120
+
writeTag(buf, 11, I64_WIRE_TYPE);
121
+
writeI64(buf, histogram.min);
122
+
writeTag(buf, 12, I64_WIRE_TYPE);
123
+
writeI64(buf, histogram.max);
120
124
for (doublebucketCount : histogram.bucketCounts) {
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/test/java/datadog/trace/bootstrap/otel/metrics/data/OtlpTestPoints.java
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,12 @@ public static OtlpDoublePoint doublePoint(double value) {
Copy file name to clipboardExpand all lines: dd-java-agent/agent-otel/otel-bootstrap/src/test/java/datadog/trace/bootstrap/otel/metrics/export/OtlpMetricsProtoTest.java
0 commit comments