package opentelemetry

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Opentelemetry_client.SignalSource

Constructing and managing OTel signals

The type of signals

This is not the principle type of signals from the perspective of what gets encoded and sent via protocl buffers, but it is the principle type that collector clients needs to reason about.

Sourceval to_traces : t -> Opentelemetry_proto.Trace.resource_spans list option
Sourceval to_logs : t -> Opentelemetry_proto.Logs.resource_logs list option
Sourceval is_traces : t -> bool
Sourceval is_metrics : t -> bool
Sourceval is_logs : t -> bool
Sourcemodule Encode : sig ... end

Encode signals to protobuf encoded strings, ready to be sent over the wire

Sourcemodule Decode : sig ... end

Decode signals from protobuf encoded strings, received over the wire

Sourcemodule Pp : sig ... end