Opentelemetry_ambient_contextAmbient context.
The ambient context, like the Matrix, is everywhere around you.
It is responsible for keeping track of that context in a manner that's consistent with the program's choice of control flow paradigm:
'a Lwt.t created inside the with_binding k v (fun _ -> …) will inherit the k := v assignment.with_binding k v (fun () -> …) will inherit the k := v assignment. This is consistent with the structured concurrency approach of Eio.The only data stored by this storage is a Hmap.t, ie a heterogeneous map. Various users (libraries, user code, etc.) can create their own key to store what they are interested in, without affecting other parts of the storage.
module Types := Opentelemetry_ambient_context_typesmodule type STORAGE = Types.STORAGEtype storage = (module STORAGE)val default_storage : storageval get_current_storage : unit -> storageval set_storage_provider : storage -> unitval create_key : unit -> 'a keyCreate a new fresh key, distinct from any previously created key.
val get : 'a key -> 'a optionGet the current value for a given key, or None if no value was associated with the key in the ambient context.
val with_binding : 'a key -> 'a -> (unit -> 'r) -> 'rwith_binding k v cb calls cb() in a context in which k is bound to v. This does not affect storage outside of cb().
val without_binding : 'a key -> (unit -> 'b) -> 'bwithout_binding k cb calls cb() in a context where k has no binding (possibly shadowing the current ambient binding of k if it exists).