mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-07 18:37:56 -05:00
prepare for 0.8
This commit is contained in:
parent
14b9f440d1
commit
267ac195ef
8 changed files with 17 additions and 8 deletions
|
|
@ -1,3 +1,12 @@
|
|||
|
||||
## 0.8
|
||||
|
||||
- feat: add dep on `hmap`, add standard keys to carry around a span context or trace id
|
||||
- add semantic conventions for code and HTTP
|
||||
|
||||
- better debug message in curl backend
|
||||
- make otel-trace a bit more lightweight
|
||||
|
||||
## 0.7
|
||||
|
||||
- add Span_link.of_span_ctx, Scope.to_span_ctx, dummy values
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
(source
|
||||
(github imandra-ai/ocaml-opentelemetry))
|
||||
|
||||
(version 0.7)
|
||||
(version 0.8)
|
||||
|
||||
(authors "the Imandra team and contributors")
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.7"
|
||||
version: "0.8"
|
||||
synopsis: "Collector client for opentelemetry, using cohttp + lwt"
|
||||
maintainer: [
|
||||
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.7"
|
||||
version: "0.8"
|
||||
synopsis: "Collector client for opentelemetry, using http + ezcurl"
|
||||
maintainer: [
|
||||
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.7"
|
||||
version: "0.8"
|
||||
synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
|
||||
maintainer: [
|
||||
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.7"
|
||||
version: "0.8"
|
||||
synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io"
|
||||
maintainer: [
|
||||
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.7"
|
||||
version: "0.8"
|
||||
synopsis: "Instrumentation for https://opentelemetry.io"
|
||||
maintainer: [
|
||||
"Simon Cruanes <simon.cruanes.2007@m4x.org>"
|
||||
|
|
|
|||
|
|
@ -328,7 +328,7 @@ end
|
|||
|
||||
(** Hmap key to carry around a {!Trace_id.t}, to remember what the current
|
||||
trace is.
|
||||
@since NEXT_RELEASE *)
|
||||
@since 0.8 *)
|
||||
let k_trace_id : Trace_id.t Hmap.key = Hmap.Key.create ()
|
||||
|
||||
(** Unique ID of a span. *)
|
||||
|
|
@ -486,7 +486,7 @@ end
|
|||
|
||||
(** Hmap key to carry around a {!Span_ctx.t}, e.g. to remember what the current
|
||||
parent span is.
|
||||
@since NEXT_RELEASE *)
|
||||
@since 0.8 *)
|
||||
let k_span_ctx : Span_ctx.t Hmap.key = Hmap.Key.create ()
|
||||
|
||||
(** {2 Attributes and conventions} *)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue