package opentelemetry-client

  1. Overview
  2. Docs

Source file shutdown_sync.ml

1
2
3
4
5
6
7
8
9
10
open Common_

(** Shutdown this exporter and block the thread until it's done.

    With the new Exporter.t interface, shutdown is synchronous. This function is
    kept for backwards compatibility. *)
let shutdown (exp : OTEL.Exporter.t) : unit = OTEL.Exporter.shutdown exp

(** Shutdown main exporter and wait *)
let shutdown_main () : unit = Option.iter shutdown (OTEL.Sdk.get ())