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 6842cd4 commit f159188Copy full SHA for f159188
x-pack/plugin/otel-data/src/main/java/org/elasticsearch/xpack/oteldata/otlp/datapoint/DataPoint.java
@@ -256,7 +256,7 @@ public String getDynamicTemplate() {
256
257
@Override
258
public boolean isValid(Set<String> errors) {
259
- if (metric.getHistogram().getAggregationTemporality() == AggregationTemporality.AGGREGATION_TEMPORALITY_DELTA == false) {
+ if (metric.getHistogram().getAggregationTemporality() != AggregationTemporality.AGGREGATION_TEMPORALITY_DELTA) {
260
errors.add("cumulative histogram metrics are not supported, ignoring " + metric.getName());
261
return false;
262
}
0 commit comments