We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c2f4b commit f9e64c6Copy full SHA for f9e64c6
x-pack/plugin/otel-data/src/main/java/org/elasticsearch/xpack/oteldata/otlp/datapoint/DataPoint.java
@@ -172,8 +172,7 @@ public String getDynamicTemplate() {
172
173
@Override
174
public boolean isValid(Set<String> errors) {
175
- if (metric.getExponentialHistogram()
176
- .getAggregationTemporality() != AggregationTemporality.AGGREGATION_TEMPORALITY_DELTA) {
+ if (metric.getExponentialHistogram().getAggregationTemporality() != AggregationTemporality.AGGREGATION_TEMPORALITY_DELTA) {
177
errors.add("cumulative exponential histogram metrics are not supported, ignoring " + metric.getName());
178
return false;
179
}
0 commit comments