io.opentelemetry.exporter.internal.otlp.metrics.SumMarshaler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-exporter-otlp-common Show documentation
Show all versions of opentelemetry-exporter-otlp-common Show documentation
OpenTelemetry Protocol Exporter
The newest version!
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.exporter.internal.otlp.metrics;
import io.opentelemetry.exporter.internal.marshal.MarshalerUtil;
import io.opentelemetry.exporter.internal.marshal.MarshalerWithSize;
import io.opentelemetry.exporter.internal.marshal.ProtoEnumInfo;
import io.opentelemetry.exporter.internal.marshal.Serializer;
import io.opentelemetry.proto.metrics.v1.internal.Sum;
import io.opentelemetry.sdk.metrics.data.PointData;
import io.opentelemetry.sdk.metrics.data.SumData;
import java.io.IOException;
final class SumMarshaler extends MarshalerWithSize {
private final NumberDataPointMarshaler[] dataPoints;
private final ProtoEnumInfo aggregationTemporality;
private final boolean isMonotonic;
static SumMarshaler create(SumData extends PointData> sum) {
NumberDataPointMarshaler[] dataPointMarshalers =
NumberDataPointMarshaler.createRepeated(sum.getPoints());
return new SumMarshaler(
dataPointMarshalers,
MetricsMarshalerUtil.mapToTemporality(sum.getAggregationTemporality()),
sum.isMonotonic());
}
private SumMarshaler(
NumberDataPointMarshaler[] dataPoints,
ProtoEnumInfo aggregationTemporality,
boolean isMonotonic) {
super(calculateSize(dataPoints, aggregationTemporality, isMonotonic));
this.dataPoints = dataPoints;
this.aggregationTemporality = aggregationTemporality;
this.isMonotonic = isMonotonic;
}
@Override
public void writeTo(Serializer output) throws IOException {
output.serializeRepeatedMessage(Sum.DATA_POINTS, dataPoints);
output.serializeEnum(Sum.AGGREGATION_TEMPORALITY, aggregationTemporality);
output.serializeBool(Sum.IS_MONOTONIC, isMonotonic);
}
private static int calculateSize(
NumberDataPointMarshaler[] dataPoints,
ProtoEnumInfo aggregationTemporality,
boolean isMonotonic) {
int size = 0;
size += MarshalerUtil.sizeRepeatedMessage(Sum.DATA_POINTS, dataPoints);
size += MarshalerUtil.sizeEnum(Sum.AGGREGATION_TEMPORALITY, aggregationTemporality);
size += MarshalerUtil.sizeBool(Sum.IS_MONOTONIC, isMonotonic);
return size;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy