Instrumentation for https://opentelemetry.io
Find a file
2022-11-09 11:53:14 -05:00
.github chore: try to fix github page 2022-10-26 09:52:16 -04:00
src fix(cohttp-lwt-client): do not override config url 2022-11-09 11:53:14 -05:00
tests fix warning 2022-10-03 12:43:37 -04:00
vendor chore: update vendored otel to 0.19 2022-09-30 13:59:28 -04:00
.gitignore doc, etc. 2022-03-18 14:17:56 -04:00
.gitmodules fuck vendoring atomic 2022-03-23 15:33:03 -04:00
.ocamlformat format 2022-07-05 15:05:33 -04:00
.ocamlformat-ignore ocamlformat-ignore 2022-08-15 12:30:16 -04:00
CHANGES.md prepare for 0.3 2022-07-08 11:52:30 -04:00
dune feat(ocurl): simpler, cleaner backend implementation 2022-07-06 12:06:51 -04:00
dune-project chore: lwt_ppx test dep 2022-10-03 12:43:33 -04:00
emit1.sh feat: parse W3C traceparent header 2022-03-24 17:22:45 +00:00
Makefile chore 2022-06-09 11:29:20 -04:00
opentelemetry-client-cohttp-lwt.opam chore: lwt_ppx test dep 2022-10-03 12:43:33 -04:00
opentelemetry-client-ocurl.opam update generated code and main library 2022-09-30 14:13:38 -04:00
opentelemetry-cohttp-lwt.opam prepare for 0.3 2022-07-08 11:52:30 -04:00
opentelemetry-lwt.opam prepare for 0.3 2022-07-08 11:52:30 -04:00
opentelemetry.opam update generated code and main library 2022-09-30 14:13:38 -04:00
README.md clarify license 2022-10-26 09:53:38 -04: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 a backend (default: dummy backend)
  • library opentelemetry-client-ocurl is a backend that communicates via http+protobuf with some collector (otelcol, datadog-agent, etc.)

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)

Use

For now, instrument manually:

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

let foo () =
  let@ scope = Otel.Trace.with_  "foo"
      ~attrs:["hello", `String "world"] in
  do_work();
  Otel.Metrics.(
    emit [
      gauge ~name:"foo.x" [int 42];
    ]);
  do_more_work();
  ()

let main () =
  Otel.Globals.service_name := "my_service";
  Otel.GC_metrics.basic_setup();

  Opentelemetry_client_ocurl.with_setup () @@ fun () ->
  (* … *)
  foo ();
  (* … *)

Configuration

The library is configurable via Opentelemetry.Config, via the standard opentelemetry env variables, or with some custom environment variables.

  • OTEL_EXPORTER_OTLP_ENDPOINT sets the http endpoint to send signals to
  • OTEL_OCAML_DEBUG=1 to print some debug messages from the opentelemetry library ide
  • OTEL_RESOURCE_ATTRIBUTES sets a comma separated list of custom resource attributes

Collector opentelemetry-client-ocurl

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

License

MIT

Semantic Conventions

Not supported yet.