ocaml-opentelemetry/src/trace/opentelemetry_trace.mli

112 lines
4.3 KiB
OCaml

(** [opentelemetry.trace] implements a {!Trace_core.Collector} for
{{:https://v3.ocaml.org/p/trace} ocaml-trace}.
After installing this collector with {!setup}, you can consume libraries
that use [ocaml-trace], and they will automatically emit OpenTelemetry spans
and logs.
Both explicit scope (in the [_manual] functions such as [enter_manual_span])
and implicit scope (in {!Internal.M.with_span}, via {!Ambient_context}) are
supported; see the detailed notes on {!Internal.M.enter_manual_span}.
We use [Trace_core.extension_event] to add more features on top of the
common tracing interface. For example to set the "span kind":
{[
let@ span = Trace_core.with_span ~__FILE__ ~__LINE__ "my-span" in
Opentelemetry_trace.set_span_kind span Span_kind_client
(* ... *)
]} *)
module OTEL := Opentelemetry_core
module Otrace := Trace_core
(** Conversions between [Opentelemetry] and [Trace_core] types *)
module Conv : sig
val trace_id_of_otel : OTEL.Trace_id.t -> string
val trace_id_to_otel : string -> OTEL.Trace_id.t
val span_id_of_otel : OTEL.Span_id.t -> int64
val span_id_to_otel : int64 -> OTEL.Span_id.t
val ctx_to_otel : Otrace.explicit_span_ctx -> OTEL.Span_ctx.t
val ctx_of_otel : OTEL.Span_ctx.t -> Otrace.explicit_span_ctx
end
(** The extension events for {!Trace_core}. *)
module Extensions : sig
type Otrace.extension_event +=
| Ev_link_span of Otrace.span * OTEL.Span_ctx.t
(** Link the given span to the given context. The context isn't the
parent, but the link can be used to correlate both spans. *)
| Ev_record_exn of {
sp: Otrace.span;
exn: exn;
bt: Printexc.raw_backtrace;
}
(** Record exception and potentially turn span to an error *)
| Ev_set_span_kind of Otrace.span * OTEL.Span_kind.t
| Ev_set_span_status of Otrace.span * OTEL.Span_status.t
end
val on_internal_error : (string -> unit) ref
(** Callback to print errors in the library itself (ie bugs) *)
val setup : unit -> unit
(** Install the OTEL backend as a Trace collector *)
val setup_with_otel_exporter : OTEL.Exporter.t -> unit
(** Same as {!setup}, but using the given exporter *)
val setup_with_otel_backend : OTEL.Exporter.t -> unit
[@@deprecated "use setup_with_otel_exporter"]
(* TODO: subscriber, with the next gen of Trace_subscriber
that allows us to provide [new_trace_id] so we can produce 16B trace IDs.
val subscriber_of_exporter : OTEL.Exporter.t -> Trace_subscriber.t
*)
val collector_of_exporter : OTEL.Exporter.t -> Trace_core.collector
val collector : unit -> Trace_core.collector
[@@deprecated "use collector_of_exporter, avoid global state"]
(** Make a Trace collector that uses the OTEL backend to send spans and logs *)
(* NOTE: we cannot be sure that [sc2] is still alive and findable
in the active spans table. We could provide this operation under
the explicit precondition that it is?
val link_spans : Otrace.explicit_span -> Otrace.explicit_span -> unit
(** [link_spans sp1 sp2] modifies [sp1] by adding a span link to [sp2].
@since 0.11 *)
*)
val link_span_to_otel_ctx : Otrace.span -> OTEL.Span_ctx.t -> unit
(** [link_spans sp1 sp_ctx2] modifies [sp1] by adding a span link to [sp_ctx2].
It must be the case that [sp1] is a currently active span.
@since NEXT_RELEASE *)
val set_span_kind : Otrace.span -> OTEL.Span.kind -> unit
(** [set_span_kind sp k] sets the span's kind. *)
val set_span_status : Otrace.span -> OTEL.Span_status.t -> unit
(** @since NEXT_RELEASE *)
val record_exception : Otrace.span -> exn -> Printexc.raw_backtrace -> unit
(** Record exception in the current span. *)
val with_ambient_span : Otrace.explicit_span -> (unit -> 'a) -> 'a
(** [with_ambient_span sp f] calls [f()] in an ambient context where [sp] is the
current span.
Explicit spans are typically entered and exited using [enter_manual_span]
and [exit_manual_span], whereas ambient-context requires a
[with_span span f] kind of approach. This function is here to bridge the gap
whenever possible. For regular [Otrace.span] this is not needed because the
collector will set the ambient span automatically. *)
module Well_known : sig end
[@@deprecated
"use the regular functions such as `link_spans` or `set_span_kind` for this"]