diff --git a/trace-tef/Trace_tef/Writer/index.html b/trace-tef/Trace_tef/Writer/index.html index 964d54f..d4671db 100644 --- a/trace-tef/Trace_tef/Writer/index.html +++ b/trace-tef/Trace_tef/Writer/index.html @@ -35,7 +35,12 @@ tid:int -> name:string -> Stdlib.Buffer.t -> - unit
val emit_name_process : pid:int -> name:string -> Stdlib.Buffer.t -> unit
val emit_counter : + unit
val emit_name_process : pid:int -> name:string -> Stdlib.Buffer.t -> unit
val emit_process_sort_index : pid:int -> int -> Stdlib.Buffer.t -> unit
val emit_thread_sort_index : + pid:int -> + tid:int -> + int -> + Stdlib.Buffer.t -> + unit
val emit_counter : pid:int -> tid:int -> name:string -> diff --git a/trace/Trace_core/Core_ext/index.html b/trace/Trace_core/Core_ext/index.html index 40a1483..b3fa2f9 100644 --- a/trace/Trace_core/Core_ext/index.html +++ b/trace/Trace_core/Core_ext/index.html @@ -1,2 +1,2 @@ -Core_ext (trace.Trace_core.Core_ext)

Module Trace_core.Core_ext

A few core extensions.

  • since 0.11
type Trace_core__.Types.extension_event +=
  1. | Extension_set_thread_name of string
  2. | Extension_set_process_name of string

Additional extensions

type Trace_core__.Types.extension_parameter +=
  1. | Extension_span_flavor of [ `Async | `Sync ]
    (*

    Tell the backend if this is a sync or async span

    *)

Specialized parameters

type Trace_core__.Types.metric +=
  1. | Metric_int of int
    (*

    Int counter or gauge, supported by tracy, TEF, etc

    *)
  2. | Metric_float of float
    (*

    Float counter or gauge, supported by tracy, TEF, etc

    *)
+Core_ext (trace.Trace_core.Core_ext)

Module Trace_core.Core_ext

A few core extensions.

  • since 0.11
type Trace_core__.Types.extension_event +=
  1. | Extension_set_thread_name of string
  2. | Extension_set_process_name of string
  3. | Extension_set_thread_sort_index of int
    (*

    https://github.com/google/perfetto/pull/3273/changes#diff-ecec88c33adb7591ee6aa88e29b62ad52ef443611cba5e0f0ecac9b5725afdba

    *)
  4. | Extension_set_process_sort_index of int

Additional extensions

type Trace_core__.Types.extension_parameter +=
  1. | Extension_span_flavor of [ `Async | `Sync ]
    (*

    Tell the backend if this is a sync or async span

    *)

Specialized parameters

type Trace_core__.Types.metric +=
  1. | Metric_int of int
    (*

    Int counter or gauge, supported by tracy, TEF, etc

    *)
  2. | Metric_float of float
    (*

    Float counter or gauge, supported by tracy, TEF, etc

    *)