otter icon indicating copy to clipboard operation
otter copied to clipboard

Support for OpenTracing in Erlang

Results 2 otter issues
Sort by recently updated
recently updated
newest added

added a new api called otter_span_spdict_api to support nested spans without needing to pass span id across functions example:- function1() -> otter_span_spdict_api:start("span1"), .... function2(), .... otter_span_spdict_api:log("span1 logs"), .... otter_span_spdict_api:finish(). function2()...

Is there any reason otter only supports integers for traceid? My ingress controller generates a uuid and I am unable to add spans to it. I end up generating my...