UNPKG

@opentelemetry/otlp-transformer

Version:
79 lines (57 loc) 3.63 kB
# OpenTelemetry Protocol [![NPM Published Version][npm-img]][npm-url] [![Apache License][license-image]][license-image] **Note: This package is intended for internal use only.** **Note: This is an experimental package under active development. New releases may include breaking changes.** This package provides everything needed to serialize [OpenTelemetry SDK][sdk] traces, metrics and logs into the [OpenTelemetry Protocol][otlp] format. ## Quick Start To get started you will need to install a compatible OpenTelemetry API. ### Install Peer Dependencies ```sh npm install @opentelemetry/api ``` ### Serialize Traces/Metrics/Logs This module exports serializers to serialize traces, metrics and logs from the OpenTelemetry SDK into protocol buffers or JSON which can be sent over HTTP or gRPC (protobuf-only) to the OpenTelemetry collector or a compatible receiver. ```typescript import { JsonLogsSerializer, JsonMetricsSerializer, JsonTraceSerializer, ProtobufLogsSerializer, ProtobufMetricsSerializer, ProtobufTraceSerializer, IExportLogsServiceResponse, IExportMetricsServiceResponse, IExportTraceServiceResponse, } from '@opentelemetry/otlp-transformer'; // serialize to JSON export requests const serializedJsonLogs: Uint8Array = JsonLogsSerializer.serializeRequest(readableLogRecords); const serializedJsonMetrics: Uint8Array = JsonMetricsSerializer.serializeRequest(resourceMetrics); const serializedJsonTraces: Uint8Array = JsonTraceSerializer.serializeRequest(readableSpans); // serialize to Protobuf export requests const serializedProtobufLogs: Uint8Array = ProtobufLogsSerializer.serializeRequest(readableLogRecords); const serializedProtobufMetrics: Uint8Array = ProtobufMetricsSerializer.serializeRequest(resourceMetrics); const serializedProtobufTraces: Uint8Array = ProtobufTraceSerializer.serializeRequest(readableSpans); // deserialize JSON export responses const deserializedJsonLogResponse: IExportLogsServiceResponse = JsonLogsSerializer.deserializeResponse(jsonLogResponse); const deserializedJsonMetricsResponse: IExportMetricsServiceResponse = JsonMetricsSerializer.deserializeResponse(jsonMetricsResponse); const deserializedJsonTraceResponse: IExportTraceServiceResponse = JsonTraceSerializer.deserializeResponse(jsonTraceResponse); // deserialize Protobuf export responses const deserializedProtobufLogResponse: IExportLogsServiceResponse = ProtobufLogsSerializer.deserializeResponse(protobufLogResponse); const deserializedProtobufMetricsResponse: IExportMetricsServiceResponse = ProtobufMetricsSerializer.deserializeResponse(protobufMetricsResponse); const deserializedProtobufTraceResponse: IExportTraceServiceResponse = ProtobufTraceSerializer.deserializeResponse(protobufTraceResponse); ``` ## Useful links - For more information on OpenTelemetry, visit: <https://opentelemetry.io/> - For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js> - For help or feedback on this project, join us in [GitHub Discussions][discussions-url] ## License Apache 2.0 - See [LICENSE][license-url] for more information. [discussions-url]: https://github.com/open-telemetry/opentelemetry-js/discussions [license-url]: https://github.com/open-telemetry/opentelemetry-js/blob/main/LICENSE [license-image]: https://img.shields.io/badge/license-Apache_2.0-green.svg?style=flat [npm-url]: https://www.npmjs.com/package/@opentelemetry/otlp-transformer [npm-img]: https://badge.fury.io/js/%40opentelemetry%otlp-transformer.svg [sdk]: https://github.com/open-telemetry/opentelemetry-js [otlp]: https://github.com/open-telemetry/opentelemetry-proto