io.opentelemetry.exporter.internal.otlp.metrics.InstrumentationScopeMetricsStatelessMarshaler Maven / Gradle / Ivy
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.exporter.internal.otlp.metrics;
import io.opentelemetry.exporter.internal.marshal.MarshalerContext;
import io.opentelemetry.exporter.internal.marshal.MarshalerUtil;
import io.opentelemetry.exporter.internal.marshal.Serializer;
import io.opentelemetry.exporter.internal.marshal.StatelessMarshaler2;
import io.opentelemetry.exporter.internal.marshal.StatelessMarshalerUtil;
import io.opentelemetry.exporter.internal.otlp.InstrumentationScopeMarshaler;
import io.opentelemetry.proto.metrics.v1.internal.ScopeMetrics;
import io.opentelemetry.proto.trace.v1.internal.ScopeSpans;
import io.opentelemetry.sdk.common.InstrumentationScopeInfo;
import io.opentelemetry.sdk.metrics.data.MetricData;
import java.io.IOException;
import java.util.List;
/** See {@link InstrumentationScopeMetricsMarshaler}. */
final class InstrumentationScopeMetricsStatelessMarshaler
implements StatelessMarshaler2> {
static final InstrumentationScopeMetricsStatelessMarshaler INSTANCE =
new InstrumentationScopeMetricsStatelessMarshaler();
private InstrumentationScopeMetricsStatelessMarshaler() {}
@Override
public void writeTo(
Serializer output,
InstrumentationScopeInfo instrumentationScope,
List metrics,
MarshalerContext context)
throws IOException {
InstrumentationScopeMarshaler instrumentationScopeMarshaler =
context.getData(InstrumentationScopeMarshaler.class);
output.serializeMessage(ScopeMetrics.SCOPE, instrumentationScopeMarshaler);
output.serializeRepeatedMessageWithContext(
ScopeMetrics.METRICS, metrics, MetricStatelessMarshaler.INSTANCE, context);
output.serializeStringWithContext(
ScopeMetrics.SCHEMA_URL, instrumentationScope.getSchemaUrl(), context);
}
@Override
public int getBinarySerializedSize(
InstrumentationScopeInfo instrumentationScope,
List metrics,
MarshalerContext context) {
InstrumentationScopeMarshaler instrumentationScopeMarshaler =
InstrumentationScopeMarshaler.create(instrumentationScope);
context.addData(instrumentationScopeMarshaler);
int size = 0;
size += MarshalerUtil.sizeMessage(ScopeMetrics.SCOPE, instrumentationScopeMarshaler);
size +=
StatelessMarshalerUtil.sizeRepeatedMessageWithContext(
ScopeMetrics.METRICS, metrics, MetricStatelessMarshaler.INSTANCE, context);
size +=
StatelessMarshalerUtil.sizeStringWithContext(
ScopeSpans.SCHEMA_URL, instrumentationScope.getSchemaUrl(), context);
return size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy