io.opentelemetry.exporter.internal.otlp.metrics.GaugeMarshaler 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.Serializer;
import io.opentelemetry.proto.metrics.v1.internal.Gauge;
import io.opentelemetry.sdk.metrics.data.GaugeData;
import io.opentelemetry.sdk.metrics.data.PointData;
import java.io.IOException;
final class GaugeMarshaler extends MarshalerWithSize {
private final NumberDataPointMarshaler[] dataPoints;
static GaugeMarshaler create(GaugeData extends PointData> gauge) {
NumberDataPointMarshaler[] dataPointMarshalers =
NumberDataPointMarshaler.createRepeated(gauge.getPoints());
return new GaugeMarshaler(dataPointMarshalers);
}
private GaugeMarshaler(NumberDataPointMarshaler[] dataPoints) {
super(calculateSize(dataPoints));
this.dataPoints = dataPoints;
}
@Override
public void writeTo(Serializer output) throws IOException {
output.serializeRepeatedMessage(Gauge.DATA_POINTS, dataPoints);
}
private static int calculateSize(NumberDataPointMarshaler[] dataPoints) {
int size = 0;
size += MarshalerUtil.sizeRepeatedMessage(Gauge.DATA_POINTS, dataPoints);
return size;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy