OpenTelemetry-Exporter-OTLP
view release on metacpan or search on metacpan
lib/OpenTelemetry/Exporter/OTLP/Encoder/Protobuf.pm view on Meta::CPAN
use Object::Pad ':experimental(init_expr)';
# ABSTRACT: A Protobuf encoder for the OTLP exporter
package OpenTelemetry::Exporter::OTLP::Encoder::Protobuf;
our $VERSION = '0.021';
class OpenTelemetry::Exporter::OTLP::Encoder::Protobuf
:isa(OpenTelemetry::Exporter::OTLP::Encoder::JSON) {
use OpenTelemetry::Constants 'INVALID_SPAN_ID';
use OpenTelemetry::Proto;
use Ref::Util qw( is_hashref is_arrayref );
use Scalar::Util 'refaddr';
method content_type () { 'application/x-protobuf' }
method serialise ($data) {
return OpenTelemetry::Proto::Collector::Logs::V1::ExportLogsServiceRequest
->new_and_check({ resource_logs => $data->{resourceLogs} })->encode
if $data->{resourceLogs};
return OpenTelemetry::Proto::Collector::Trace::V1::ExportTraceServiceRequest
->new_and_check({ resource_spans => $data->{resourceSpans} })->encode
if $data->{resourceSpans};
die 'Unknown payload type';
}
method encode_anyvalue ( $v ) {
return { kvlist_value => { values => $self->encode_kvlist($v) } }
if is_hashref $v;
return { array_value => { values => $self->encode_arraylist($v) } }
if is_arrayref $v;
if ( my $ref = ref $v ) {
warn "Unsupported ref while encoding: $ref";
return;
}
# TODO: not strings
return { string_value => "$v" };
}
method encode_resource ( $resource ) {
{
attributes => $self->encode_kvlist($resource->attributes),
dropped_attributes_count => $resource->dropped_attributes,
};
}
method encode_span_event ( $event ) {
{
attributes => $self->encode_kvlist($event->attributes),
dropped_attributes_count => $event->dropped_attributes,
name => $event->name,
time_unix_nano => int $event->timestamp * 1_000_000_000,
};
}
method encode_span_link ( $link ) {
{
attributes => $self->encode_kvlist($link->attributes),
dropped_attributes_count => $link->dropped_attributes,
span_id => $link->context->span_id,
trace_id => $link->context->trace_id,
};
}
method encode_span ( $span ) {
my $data = {
attributes => $self->encode_kvlist($span->attributes),
( run in 1.408 second using v1.01-cache-2.11-cpan-39bf76dae61 )