prepare for 0.8

This commit is contained in:
Simon Cruanes 2024-03-08 11:48:54 -05:00
parent 14b9f440d1
commit 267ac195ef
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
8 changed files with 17 additions and 8 deletions

View file

@ -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 ## 0.7
- add Span_link.of_span_ctx, Scope.to_span_ctx, dummy values - add Span_link.of_span_ctx, Scope.to_span_ctx, dummy values

View file

@ -7,7 +7,7 @@
(source (source
(github imandra-ai/ocaml-opentelemetry)) (github imandra-ai/ocaml-opentelemetry))
(version 0.7) (version 0.8)
(authors "the Imandra team and contributors") (authors "the Imandra team and contributors")

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.7" version: "0.8"
synopsis: "Collector client for opentelemetry, using cohttp + lwt" synopsis: "Collector client for opentelemetry, using cohttp + lwt"
maintainer: [ maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.7" version: "0.8"
synopsis: "Collector client for opentelemetry, using http + ezcurl" synopsis: "Collector client for opentelemetry, using http + ezcurl"
maintainer: [ maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.7" version: "0.8"
synopsis: "Opentelemetry tracing for Cohttp HTTP servers" synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
maintainer: [ maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.7" version: "0.8"
synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io" synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io"
maintainer: [ maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.7" version: "0.8"
synopsis: "Instrumentation for https://opentelemetry.io" synopsis: "Instrumentation for https://opentelemetry.io"
maintainer: [ maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -328,7 +328,7 @@ end
(** Hmap key to carry around a {!Trace_id.t}, to remember what the current (** Hmap key to carry around a {!Trace_id.t}, to remember what the current
trace is. trace is.
@since NEXT_RELEASE *) @since 0.8 *)
let k_trace_id : Trace_id.t Hmap.key = Hmap.Key.create () let k_trace_id : Trace_id.t Hmap.key = Hmap.Key.create ()
(** Unique ID of a span. *) (** 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 (** Hmap key to carry around a {!Span_ctx.t}, e.g. to remember what the current
parent span is. parent span is.
@since NEXT_RELEASE *) @since 0.8 *)
let k_span_ctx : Span_ctx.t Hmap.key = Hmap.Key.create () let k_span_ctx : Span_ctx.t Hmap.key = Hmap.Key.create ()
(** {2 Attributes and conventions} *) (** {2 Attributes and conventions} *)