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 8492a44 commit b3c2f4bCopy full SHA for b3c2f4b
x-pack/plugin/otel-data/src/main/java/org/elasticsearch/xpack/oteldata/otlp/datapoint/DataPoint.java
@@ -173,7 +173,7 @@ public String getDynamicTemplate() {
173
@Override
174
public boolean isValid(Set<String> errors) {
175
if (metric.getExponentialHistogram()
176
- .getAggregationTemporality() == AggregationTemporality.AGGREGATION_TEMPORALITY_DELTA == false) {
+ .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