package opentelemetry

  1. Overview
  2. Docs
Instrumentation for https://opentelemetry.io

Install

dune-project
 Dependency

Authors

Maintainers

Sources

opentelemetry-0.12.tbz
sha256=ca92e7395495f73b46316607c514ce0dbe5fab129dddd9a17b353f835dcbf77d
sha512=ea2afd07c8db955364681f90388959db97d7b7f5b0836bc4045eca929968d6d77905e3aa66802226c0791c2552d0e281bdf2dbfe7ed90e9877ce3cedc343823f

doc/opentelemetry.client/Opentelemetry_client/Signal/index.html

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