Skip to content

Commit

Permalink
prepare for 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Mar 8, 2024
1 parent e76a977 commit 62063f3
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 20 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

# 0.7

- feat: add levels to `Trace_core`. Levels are similar to `logs` levels, to help control verbosity.
- add hmap as a depopt (#28)

- fix: truncate large strings in fuchsia

# 0.6

- add `ppx_trace` for easier instrumentation.
Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(name trace)
(generate_opam_files true)
(version 0.6)
(version 0.7)

(source
(github c-cube/ocaml-trace))
Expand Down
2 changes: 1 addition & 1 deletion ppx_trace.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6"
version: "0.7"
synopsis: "A ppx-based preprocessor for trace"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]
Expand Down
6 changes: 3 additions & 3 deletions src/core/level.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
down the application or overwhelm the tracing system; yet
they might be useful in debug situations.
@since NEXT_RELEASE *)
@since 0.7 *)

(** Level of tracing. These levels are in increasing order, i.e if
level [Debug1] is enabled, everything below it (Error, Warning, Info, etc.)
are also enabled.
@since NEXT_RELEASE *)
@since 0.7 *)
type t =
| Error (** Only errors *)
| Warning (** Warnings *)
Expand All @@ -21,7 +21,7 @@ type t =
| Debug3 (** Maximum verbosity debugging level *)
| Trace (** Enable everything (default level) *)

(** @since NEXT_RELEASE *)
(** @since 0.7 *)
let to_string : t -> string = function
| Error -> "error"
| Warning -> "warning"
Expand Down
24 changes: 12 additions & 12 deletions src/core/trace_core.mli
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ val enabled : unit -> bool

val get_default_level : unit -> Level.t
(** Current default level for spans.
@since NEXT_RELEASE *)
@since 0.7 *)

val set_default_level : Level.t -> unit
(** Set level used for spans that do not specify it. The default
default value is [Level.Trace].
@since NEXT_RELEASE *)
@since 0.7 *)

val with_span :
?level:Level.t ->
Expand All @@ -47,7 +47,7 @@ val with_span :
This is the recommended way to instrument most code.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}.
{b NOTE} an important restriction is that this is only supposed to
Expand All @@ -67,7 +67,7 @@ val enter_span :
span
(** Enter a span manually.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}. *)

val exit_span : span -> unit
Expand Down Expand Up @@ -98,7 +98,7 @@ val enter_manual_sub_span :
start and stop on one thread, and are nested purely by their timestamp;
and [`Async] spans can overlap, migrate between threads, etc. (as happens in
Lwt, Eio, Async, etc.) which impacts how the collector might represent them.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}.
@since 0.3 *)

Expand All @@ -115,7 +115,7 @@ val enter_manual_toplevel_span :
[explicit_span] around until it's exited with {!exit_manual_span}.
The span can be used as a parent in {!enter_manual_sub_span}.
@param flavor see {!enter_manual_sub_span} for more details.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}.
@since 0.3 *)

Expand All @@ -140,7 +140,7 @@ val message :
unit
(** [message msg] logs a message [msg] (if a collector is installed).
Additional metadata can be provided.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}.
@param span the surrounding span, if any. This might be ignored by the collector. *)

Expand All @@ -153,7 +153,7 @@ val messagef :
(** [messagef (fun k->k"hello %s %d!" "world" 42)] is like
[message "hello world 42!"] but only computes the string formatting
if a collector is installed.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}. *)

val set_thread_name : string -> unit
Expand All @@ -174,7 +174,7 @@ val counter_int :
unit
(** Emit a counter of type [int]. Counters represent the evolution of some quantity
over time.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}.
@param data metadata for this metric (since 0.4) *)

Expand All @@ -185,7 +185,7 @@ val counter_float :
float ->
unit
(** Emit a counter of type [float]. See {!counter_int} for more details.
@param level optional level for this span. since NEXT_RELEASE.
@param level optional level for this span. since 0.7.
Default is set via {!set_default_level}.
@param data metadata for this metric (since 0.4) *)

Expand All @@ -204,12 +204,12 @@ val setup_collector : collector -> unit
val get_current_level : unit -> Level.t
(** Get current level. This is only meaningful if
a collector was set up with {!setup_collector}.
@since NEXT_RELEASE *)
@since 0.7 *)

val set_current_level : Level.t -> unit
(** Set the current level of tracing. This only has a visible
effect if a collector was installed with {!setup_collector}.
@since NEXT_RELEASE *)
@since 0.7 *)

val shutdown : unit -> unit
(** [shutdown ()] shutdowns the current collector, if one was installed,
Expand Down
2 changes: 1 addition & 1 deletion trace-fuchsia.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6"
version: "0.7"
synopsis:
"A high-performance backend for trace, emitting a Fuchsia trace into a file"
maintainer: ["Simon Cruanes"]
Expand Down
2 changes: 1 addition & 1 deletion trace-tef.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6"
version: "0.7"
synopsis:
"A simple backend for trace, emitting Catapult/TEF JSON into a file"
maintainer: ["Simon Cruanes"]
Expand Down
2 changes: 1 addition & 1 deletion trace.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.6"
version: "0.7"
synopsis:
"A stub for tracing/observability, agnostic in how data is collected"
maintainer: ["Simon Cruanes"]
Expand Down

0 comments on commit 62063f3

Please sign in to comment.