From 4ab35e4a549d14cb0bfaac1910f488d38a330f19 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Fri, 30 Sep 2022 16:39:11 -0400 Subject: [PATCH] fix(otel-lwt): missing modules now re-exported --- src/lwt/opentelemetry_lwt.ml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/lwt/opentelemetry_lwt.ml b/src/lwt/opentelemetry_lwt.ml index 0bb93bc6..8e8524cf 100644 --- a/src/lwt/opentelemetry_lwt.ml +++ b/src/lwt/opentelemetry_lwt.ml @@ -4,9 +4,11 @@ module Span_id = Span_id module Trace_id = Trace_id module Event = Event module Span = Span +module Span_link = Span_link module Globals = Globals module Timestamp_ns = Timestamp_ns module GC_metrics = GC_metrics +module Metrics_callbacks = Metrics_callbacks module Trace_context = Trace_context module Trace = struct @@ -59,3 +61,8 @@ module Metrics = struct open Proto.Metrics include Metrics end + +module Logs = struct + include Proto.Logs + include Logs +end