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 @@ -
Opentelemetry.SpanSpans.
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 t = Proto.Trace.spantype id = Span_id.ttype 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 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 t = Proto.Trace.spantype id = Span_id.ttype 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
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 ->