package opentelemetry

  1. Overview
  2. Docs
Core library for instrumentation and serialization for https://opentelemetry.io

Install

dune-project
 Dependency

Authors

Maintainers

Sources

opentelemetry-0.91.1.tbz
sha256=30f344e7168a793d02c12d69c0f566b06eb963f52db3321e415ef6c5cd3d504d
sha512=19160da37cab59a23333d815baa67035f666e700a386953ec9957c685a0b72fa87919bac6a6651e50b1619773b3be7170bcc067c2d5316436b988bcf8d18dcba

doc/opentelemetry.core/Opentelemetry_core/Instrument/index.html

Module Opentelemetry_core.InstrumentSource

Global registry of metric instruments.

Instruments are stateful accumulators (counters, gauges, histograms, …). update is called at any time to record a value; emit is called at collection time by a Meter.t, which supplies the clock.

All instruments register themselves into a global list on creation via register, so any meter can collect the full set in one pass. Make sure to only create instruments at the toplevel so that the list doesn't grow forever.

Sourcetype 'a t = {
  1. kind : string;
    (*

    "counter", "gauge", "histogram", …

    *)
  2. name : string;
  3. emit : clock:Clock.t -> unit -> Metrics.t list;
    (*

    Snapshot current accumulated state into metrics.

    *)
  4. update : 'a -> unit;
    (*

    Record a new value.

    *)
}
Sourceval register : 'a t -> unit

Add an instrument's emit to all. Called automatically by the standard instrument-creation functions.

Sourcemodule type CUSTOM_IMPL = sig ... end

Implementation details for a custom stateful instrument. Pass to Make to obtain a create function.

Sourcemodule Make (I : CUSTOM_IMPL) : sig ... end

Build a custom instrument type from a CUSTOM_IMPL. The returned create registers the instrument into all automatically.

Sourcemodule Int_counter : sig ... end
Sourcemodule Float_counter : sig ... end
Sourcemodule Int_gauge : sig ... end
Sourcemodule Float_gauge : sig ... end
Sourcemodule Histogram : sig ... end
Sourcemodule Internal : sig ... end