package trace
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
A lightweight stub for tracing/observability, agnostic in how data is collected
Install
dune-project
Dependency
Authors
Maintainers
Sources
trace-0.12.tbz
sha256=c173d6bf9433e9eeb41bbddda116a296373d45865841dcbb78bff3be8abd9fd8
sha512=1105c52112095fdc8d4961d7346b02e416627bde6ac79ddd137bff63ac0ff5cd23fa53192be642614efadb9cb0cbb83b7d571bb5a0d100ad0ae6d10bc61d3bba
doc/src/trace.simple/simple_span.ml.html
Source file simple_span.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33(** A simple span. This is a concrete representation of spans that is convenient to manipulate. @since 0.11 *) open Trace_core type span_flavor = [ `Sync | `Async ] type t = { name: string; __FUNCTION__: string option; __FILE__: string; __LINE__: int; time_ns: int64; (** Time the span was entered. *) mutable time_exit_ns: int64; (** Time the span was exited. Set at exit, [Int64.max_int] otherwise *) tid: int; (** Thread in which span was created *) trace_id: int64; (** For async spans *) parent: parent; flavor: span_flavor; params: extension_parameter list; mutable data: (string * Trace_core.user_data) list; (** Modified by [add_data_to_span] *) } (** The type of spans used by all subscribers. *) type Trace_core.span += | Span_simple of t (** How to turn a {!Simple_span.t} into a {!span}. *)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>