From e74e9c4d5751fa010b6893489046e4db8a2d04ab Mon Sep 17 00:00:00 2001 From: c-cube Date: Fri, 18 Mar 2022 20:39:55 +0000 Subject: [PATCH] deploy: 958d79c875a76b98c60fd72b242afbdfb76ae94c --- dev/opentelemetry/Opentelemetry/Span/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/opentelemetry/Opentelemetry/Span/index.html b/dev/opentelemetry/Opentelemetry/Span/index.html index 91fbea35..785a5f8e 100644 --- a/dev/opentelemetry/Opentelemetry/Span/index.html +++ b/dev/opentelemetry/Opentelemetry/Span/index.html @@ -1,11 +1,12 @@ -Span (opentelemetry.Opentelemetry.Span)

Module Opentelemetry.Span

Spans.

A Span is the workhorse of traces, it indicates an operation that took place over a given span of time (indicated by start_time and end_time) as part of a hierarchical trace. All spans in a given trace are bound by the use of the same Trace_id.t.

type id = Span_id.t
type nonrec kind = Proto.Trace.span_span_kind =
| Span_kind_unspecified
| Span_kind_internal
| Span_kind_server
| Span_kind_client
| Span_kind_producer
| Span_kind_consumer
val id : t -> Span_id.t
type key_value = +Span (opentelemetry.Opentelemetry.Span)

Module Opentelemetry.Span

Spans.

A Span is the workhorse of traces, it indicates an operation that took place over a given span of time (indicated by start_time and end_time) as part of a hierarchical trace. All spans in a given trace are bound by the use of the same Trace_id.t.

type id = Span_id.t
type nonrec kind = Proto.Trace.span_span_kind =
| Span_kind_unspecified
| Span_kind_internal
| Span_kind_server
| Span_kind_client
| Span_kind_producer
| Span_kind_consumer
type nonrec status_code = Proto.Trace.status_status_code =
| Status_code_unset
| Status_code_ok
| Status_code_error
type nonrec status = Proto.Trace.status = {
message : string;
code : status_code;
}
val id : t -> Span_id.t
type key_value = string * [ `Int of int | `String of string | `Bool of bool | `None ]
val create : ?kind:kind -> ?id:id -> ?trace_state:string -> ?service_name:string -> ?attrs:key_value list -> + ?status:status -> trace_id:Trace_id.t -> ?parent:id -> ?links:(Trace_id.t * Span_id.t * string) list ->