Opentelemetry.Exporterinclude module type of struct include Opentelemetry_core.Exporter endtype t = Opentelemetry_core.Exporter.t = {export : Opentelemetry_core.Any_signal_l.t -> unit;Export a batch of signals. Called by the provider when signals are ready to be sent.
*)active : unit -> Opentelemetry_util.Aswitch.t;Lifecycle switch: turns off when the exporter has fully shut down (i.e. the consumer queue is drained).
*)shutdown : unit -> unit;shutdown () initiates shutdown: flushes remaining batches, closes the queue, etc. Watch active to know when it's complete.
self_metrics : unit -> Opentelemetry_core.Metrics.t list;metrics about the exporter itself
*)}Main exporter interface.
val dummy : unit -> tDummy exporter, does nothing
val active : t -> Opentelemetry_util.Aswitch.tval shutdown : t -> unitval cleanup : t -> unitval self_metrics : t -> Opentelemetry_core.Metrics.t list