diff --git a/dev/index.html b/dev/index.html index 3ed9f87e..0685b3cf 100644 --- a/dev/index.html +++ b/dev/index.html @@ -11,6 +11,7 @@
Opentelemetry_client_ocurl.Configtype t = {}val make :
+ ?debug:bool ->
+ ?url:string ->
+ ?batch_traces:int option ->
+ ?batch_metrics:int option ->
+ ?batch_timeout_ms:int ->
+ ?thread:bool ->
+ unit ->
+ tMake a configuration
val pp : Stdlib.Format.formatter -> t -> unitOpentelemetry_client_ocurlUrl of the endpoint. Default is "http://localhost:4318", or "OTEL_EXPORTER_OTLP_ENDPOINT" if set.
Setup endpoint. This modifies Opentelemetry.Collector.backend.
Opentelemetry_client_ocurlUrl of the endpoint. Default is "http://localhost:4318", or "OTEL_EXPORTER_OTLP_ENDPOINT" if set.
Set a lock/unlock pair to protect the critical sections of Opentelemetry.Collector.BACKEND
module Config : sig ... endval setup : ?config:Config.t -> ?enable:bool -> unit -> unitSetup endpoint. This modifies Opentelemetry.Collector.backend.
val with_setup :
+ ?config:Config.t ->
+ ?enable:bool ->
+ unit ->
+ ( unit -> 'a ) ->
+ 'awith_setup () f is like setup(); f() but takes care of cleaning up after f() returns.
Sum of all reported measurements over a time interval
val emit : t list -> unit Lwt.tEmit some metrics to the collector.