OpenCensus Erlang library
Version: 0.3.0
Erlang stats collection and distributed tracing framework
<a name="Using_with_Rebar3_project">Using with Rebar3 project</a>
Add as dependency to rebar.config:
{deps, [opencensus]}.Or to use the latest from git master branch:
{deps, [{opencensus, {git, "https://github.com/census-instrumentation/opencensus-erlang.git", {branch, "master"}}}]}.<a name="Creating_Spans">Creating Spans</a>
Span data is stored and manipulated in an ETS table. Span context must be tracked in order to create child span's, propagate span context across process or node boundaries and for the library to which span data to manipulate in the context it is called.
opencensus provides two methods for tracking this context, the process dictionary and a variable holding a ctx record.
Process Dictionary as Context
With ocp the span context is tracked in the current processs process dictionary. ```erlang some_fun() -> ocp:with_child_span(<<"some_fun/0">>, fun() -> ... body .. end). ``` <h5><a name="Parse_Transform">Parse Transform</a></h5> The parse transform provides an attribute to decorate functions with that will start a span, wrap the contents in atryand finish the span in anafterclause. Add the parse transform to the compile opts inrebar.config: ```erlang {erl_opts, [{parse_transform, oc_transform}]}. ``` And use: ```erlang -span([]). function_to_trace() -> ... SpanCtx = ocp:current_span(), %% ocp works in a decorated function too ... ``` Since the tranformed functions use the process dictionary to store the context you can interact with the current span the same way as you do withocp, covered in the previous section. <h5><a name="Manual_Context_Tracking">Manual Context Tracking</a></h5>ctxis a generic context library for Erlang. OpenCensus provides the option to use it in place of the process dictionary for tracking the span context. In this example a function is passed actxvariableCtxthat some instrumented library could have set the span context based on the incoming metadata of a request, like HTTP headers. Theoctrace:newspanfunction will checkCtxfor a span context and create a child span of that span context if it exists, otherwise a root span will be created. We can pass the span context to another function, we could also createa a newctxto pass (octrace:withspan(Ctx, SpanCtx)), to be further updated or have new children created: ```erlang handler(Ctx, NextHandler) -> SpanCtx = oc_trace:with_child_span(Ctx, <<"span-name">>), try oc_trace:put_attribute(<<"key">>, <<"value">>, SpanCtx), {Code, Message} = NextHandler(SpanCtx), oc_trace:set_status(Code, Message, SpanCtx) after oc_trace:finish_span(SpanCtx) end. ``` <h5><a name="Manual_Span_Data_Handling">Manual Span Data Handling</a></h5> The moduleocspanhas the functional span data manipulation functions, meaning ETS is not involved. Most users will not need this, but for potential alternative span data stores or context trackers they are necessary. #### <a name="Working_with_Spans">Working with Spans</a> #### <h5><a name="Attributes">Attributes</a></h5> A span has a map of attributes providing details about the span. The key is a binary string and the value of the attribute can be a binary string, integer, or boolean. ```erlang Span1 = oc_trace:put_attribute(<<"/instance_id">>, <<"my-instance">>, SpanCtx), ``` <h5><a name="Time_Events">Time Events</a></h5> A time event is a timestamped annotation with user-supplied key-value pairs or a message event to represent a message (not specificly an Erlang message) sent to or received from another span. Themessageeventconsists of a type, identifier and size of the message.Idis an identifier for the event's message that can be used to matchSENTandRECEIVEDmessage_events. For example, this field could represent a sequence ID for a streaming RPC. It is recommended to be unique within a Span. IfCompressedSizeis0it is assumed to be the same asUncompressedSize`.
erlang Event = opencensus:message_event(?MESSAGE_EVENT_TYPE_SENT, Id, UncompressedSize, CompressedSize) oc_trace:add_time_event(Event, SpanCtx),
<h5><a name="Links">Links</a></h5>
Links are useful in cases like a job queue. A job is created with a span context and when run wants to report a new span. The job isn't a direct child of the span that inserted it into the queue, but it is related. The job creates a link to the span that created it.
erlang SpanCtx = oc_trace:with_child_span(Ctx, <<"running job">>), Link = oc_trace:link(?LINK_TYPE_PARENT_LINKED_SPAN, TraceId, ParentSpanId, #{}), oc_trace:add_link(Link, SpanCtx), ... run job ... oc_trace:finish_span(SpanCtx).
#### <a name="Propagating_Span_Context">Propagating Span Context</a> ####
#### <a name="Samplers">Samplers</a> ####
[__oc_sampler_never:](oc_sampler_never.md) Never enable a new trace, but keeps a trace enabled if its propagated context is enabled.
[__oc_sampler_always:](oc_sampler_always.md) Enable every new trace for sampling.
[__oc_sampler_probability:](oc_sampler_probability.md) Takes a probability, default 0.5, that any new trace will be sampled.
#### <a name="Reporters">Reporters</a> ####
Google Cloud Trace: Support for v1 in master, v2 and grpc coming soon;
Prometheus: Exports spans as Prometheus metrics.
#### <a name="Tags">Tags</a> ####
erlang Ctx1 = oc_tags:new_ctx(Ctx, #{"method" => "GET"})erlang Tags = oc_tags:from_ctx(Ctx)
### Development
sh $ rebar3 compile
Running tests:
sh $ rebar3 ct
#### Updating OpenCensus standard protobuf encoder and decoder
Language independent interface types for Census are found in the opencensus-proto repo. The opencensus Erlang app provides functionality for converting from the apps internal representation to the standard protobuf interface. Below are the steps to update the Erlang module and header for encoding and decoding the protobufs:
sh $ git clone https://github.com/census-instrumentation/opencensus-proto priv/opencensus-proto $ rebar3 protobuf compile