mirror of
https://github.com/ocaml-tracing/ocaml-trace.git
synced 2026-03-07 18:37:56 -05:00
13 lines
304 B
OCaml
13 lines
304 B
OCaml
type span = int64
|
|
(** A span identifier.
|
|
|
|
The meaning of the identifier depends on the collector. *)
|
|
|
|
type user_data =
|
|
[ `Int of int
|
|
| `String of string
|
|
| `Bool of bool
|
|
| `None
|
|
]
|
|
(** User defined data, generally passed as key/value pairs to
|
|
whatever collector is installed (if any). *)
|