Instrumentation for https://opentelemetry.io
Find a file
2026-03-04 13:11:25 -05:00
.github CI: remove gh-pages, add format 2026-02-19 15:54:17 -05:00
doc per signal provider, update to trace 0.12 2026-02-27 14:56:21 -05:00
src providers: self debug at installation 2026-03-04 13:11:25 -05:00
tests fix test 2026-03-03 20:08:13 -05:00
vendor chore: update OTEL to 1.8.0 2025-12-01 20:32:04 -05:00
.gitignore gitignore 2026-01-20 00:15:10 -05:00
.gitmodules detail 2023-03-09 10:47:15 -05:00
.ocamlformat chore: bump ocamlforamt to 0.27 2025-04-17 10:03:26 -04:00
.ocamlformat-ignore ocamlformat-ignore 2022-08-15 12:30:16 -04:00
CHANGES.md prepare for 0.12 2025-09-08 12:29:18 -04:00
dune disable warning 58 2026-01-20 00:15:26 -05:00
dune-project opam 2026-02-27 16:35:53 -05:00
emit1.sh feat: parse W3C traceparent header 2022-03-24 17:22:45 +00:00
emit1_ocurl_lwt.sh add basic test file for ocurl-lwt 2026-01-20 00:15:22 -05:00
emit1_stdout.sh basic emit1_stdout test exe 2026-01-20 00:15:20 -05:00
flake.lock fix nix 2025-12-05 09:40:23 -05:00
flake.nix fix nix 2025-12-05 09:40:23 -05:00
Makefile CI: remove gh-pages, add format 2026-02-19 15:54:17 -05:00
opentelemetry-client-cohttp-eio.opam use a separate ambient-context library 2026-01-20 00:15:31 -05:00
opentelemetry-client-cohttp-lwt.opam fix missing dep 2026-02-19 15:26:31 -05:00
opentelemetry-client-ocurl-lwt.opam update opam files 2026-01-20 00:15:17 -05:00
opentelemetry-client-ocurl.opam update opam files 2026-01-20 00:15:17 -05:00
opentelemetry-client.opam chore: remove dep on saturn 2026-01-20 00:15:20 -05:00
opentelemetry-cohttp-lwt.opam use a separate ambient-context library 2026-01-20 00:15:31 -05:00
opentelemetry-logs.opam update opam files 2026-01-20 00:15:17 -05:00
opentelemetry-lwt.opam use a separate ambient-context library 2026-01-20 00:15:31 -05:00
opentelemetry.opam opam 2026-02-27 16:35:53 -05:00
README.md per signal provider, update to trace 0.12 2026-02-27 14:56:21 -05:00

Opentelemetry build

This project provides an API for instrumenting server software using opentelemetry, as well as connectors to talk to opentelemetry software such as jaeger.

  • library opentelemetry should be used to instrument your code and possibly libraries. It doesn't communicate with anything except an exporter (default: no-op);
  • library opentelemetry-client-ocurl is an exporter that communicates via http+protobuf with some collector (otelcol, datadog-agent, etc.) using cURL bindings;
  • library opentelemetry-client-cohttp-lwt is an exporter that communicates via http+protobuf with some collector using cohttp.

License

MIT

Features

  • basic traces
  • basic metrics
  • basic logs
  • nice API
  • interface with lwt
  • sync collector relying on ocurl
    • batching, perf, etc.
  • async collector relying on ocurl-multi
  • interface with logs (carry context around)
  • implicit scope (via vendored ambient-context, see opentelemetry.ambient-context)

Use

For now, instrument traces/spans, logs, and metrics manually:

module Otel = Opentelemetry
let (let@) = (@@)

let foo () =
  let@ span = Otel.Tracer.with_ "foo"
      ~attrs:["hello", `String "world"] in
  do_work ();
  let now = Otel.Clock.now Otel.Meter.default.clock in
  Otel.Meter.emit1 Otel.Meter.default
    Otel.Metrics.(gauge ~name:"foo.x" [int ~now 42]);
  Otel.Span.add_event span (Otel.Event.make "work done");
  do_more_work ();
  ()

Setup

If you're writing a top-level application, you need to perform some initial configuration.

  1. Set the service_name;
  2. optionally configure [ambient-context][] with the appropriate storage for your environment — TLS, Lwt, Eio…;
  3. and install an exporter (usually by calling your client library's with_setup function.)

For example, if your application is using Lwt, and you're using ocurl as your collector, you might do something like this:

let main () =
  Otel.Globals.service_name := "my_service";
  Otel.Gc_metrics.setup ();

  Opentelemetry_ambient_context.set_storage_provider (Opentelemetry_ambient_context_lwt.storage ());
  Opentelemetry_client_ocurl.with_setup () @@ fun () ->
  (* … *)
  foo ();
  (* … *)

[ambient-context]: now vendored as opentelemetry.ambient-context, formerly https://v3.ocaml.org/p/ambient-context

Migration v012 → v0.13

see doc/migration_guide_v0.13.md

Configuration

Environment Variables

The library supports standard OpenTelemetry environment variables:

General:

  • OTEL_SDK_DISABLED - disable the SDK (default: false)
  • OTEL_SERVICE_NAME - service name
  • OTEL_RESOURCE_ATTRIBUTES - comma-separated key=value resource attributes
  • OTEL_OCAML_DEBUG=1 - print debug messages from the opentelemetry library

Exporter endpoints:

  • OTEL_EXPORTER_OTLP_ENDPOINT - base endpoint (default: http://localhost:4318)
  • OTEL_EXPORTER_OTLP_TRACES_ENDPOINT - traces endpoint
  • OTEL_EXPORTER_OTLP_METRICS_ENDPOINT - metrics endpoint
  • OTEL_EXPORTER_OTLP_LOGS_ENDPOINT - logs endpoint

Exporter configuration:

  • OTEL_EXPORTER_OTLP_PROTOCOL - protocol: http/protobuf or http/json (default: http/protobuf)

Headers:

  • OTEL_EXPORTER_OTLP_HEADERS - headers as comma-separated key=value pairs
  • OTEL_EXPORTER_OTLP_TRACES_HEADERS - traces-specific headers
  • OTEL_EXPORTER_OTLP_METRICS_HEADERS - metrics-specific headers
  • OTEL_EXPORTER_OTLP_LOGS_HEADERS - logs-specific headers

opentelemetry-client-ocurl

This is a synchronous exporter that uses the http+protobuf format to send signals (metrics, traces, logs) to some collector (eg. otelcol or the datadog agent).

Do note that it uses a thread pool and is incompatible with uses of fork on some Unixy systems. See #68 for a possible workaround.

opentelemetry-client-cohttp-lwt

This is a Lwt-friendly exporter that uses cohttp to send signals to some collector (e.g. otelcol). It must be run inside a Lwt_main.run scope.

Opentelemetry-trace

The optional library opentelemetry.trace, present if trace is installed, provides a collector for trace. This collector forwards and translates events from trace into opentelemetry. It's only useful if there also is also a OTEL collector.

License

MIT

Semantic Conventions

Not supported yet.