package devkit
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=222f8ac131b1d970dab7eeb2714bfd6b9338b88b1082e6e01c136ae19e7eaef4
sha512=c9e6d93e3d21e5530c0f4d5baca51bf1f0a5d19248f8af7678d0665bb5cdf295d7aaaaa3e50eb2e44b8720e55097cc675af4dc8ec45acf9da39feb3eae1405d5
README.md.html
devkit
General purpose OCaml library (development kit) Copyright (c) 2009 Ahrefs Released under the terms of LGPL-2.1 with OCaml linking exception.
Usage
opam install devkit
Tracing
Devkit's Web
module includes both simple, configurable, local tracing support, as well as distributed tracing support via OpenTelemetry.
To use local tracing, we use the mechanism provided by ocaml-trace
: by default, the tracing calls in devkit are a no-op; but if the top-level application containing devkit installs and configures a "tracing backend" at runtime, then devkit's web-requests will each produce timed traces.
For distributed traces, you'll both need to configure an OpenTelemetry backend for ocaml-trace
at runtime (to collect devkit's own traces); and you will most likely also want to ensure your own application's traces (using either ocaml-trace
or the full ocaml-opentelemetry
) are properly configured to correctly appear as the parent of devkit's traces.
Configuring an OpenTelemetry backend for the traces themselves is as simple wrapping your top-level application in a call to Opentelemetry_trace.
setup_with_otel_backend
or the like. That will configure both OpenTelemetry's collector and the ocaml-trace
backend.
Then, to ensure that parentage is correctly propagated across your distributed architecture, devkit can produce a W3C Trace Context traceparent
HTTP header. To ensure that it produces the correct traceparent
, however, we depend upon 'ambient context'. For this to function properly, you'll need to follow the detailed instructions in the ocaml-ambient-context
documentation.
Once thus configured, devkit will check Opentelemetry.Scope.
get_ambient_scope
before each HTTP request, and use the ambient tracing-span as the parent of the web-request's span; which will itself then be propagated to the remote service via the traceparent
HTTP header.
Development
Install OCaml dependencies in your current / global switch:
opam install . --deps-only
Or to install them in a new, directory-local switch:
opam switch create . --deps-only --no-install
opam install . --deps-only --with-test
External dependencies:
opam list -s -e --resolve=devkit
To update ragel-generated code:
aptitude install ragel
make -B gen_ragel
To update metaocaml-generated code:
opam exec --switch=4.07.1+BER -- make gen_metaocaml