Module observe
ballerina/observe
Module Overview
This module provides an API for observing Ballerina services. Ballerina supports Observability out of the box. This module provides an API to make observability more flexible for the Ballerina users.
To observe the Ballerina code, the '--b7a.observability.enabled=true' property should be given when starting the service (i.e., `ballerina run hello_world.bal --b7a.observability.enabled=true').
Tracing
Tracing provides information regarding the roundtrip of a service invocation based on the concept of spans, which are structured in a hierarchy based on the cause and effect concept. The tracing API allows users to tap into that tracing information, introduce new spans, and add additional information to existing spans using user-defined tags.
Samples
Start a root span & attach a child span
The following code snippet shows an example of starting a root span with no parent and starting another span as a child of the first span. Note: Make sure that all started spans are closed properly to ensure that all spans are reported properly.
Start a span attached to a system trace
When no parentSpanId is given or a parentSpanId of -1 is given, a span is started as a child span to the current active span in the ootb system trace.
Attach a tag to a span
It is possible to add tags to the span by using the observe:addTagToSpan()
function by providing the span id and relevant tag key and tag value.
Attach a tag to a span in the system trace
When no spanId is provided or -1 is given, the defined tags are added to the current active span in the ootb system trace.
Metrics
There are mainly two kind of metrics instances supported; Counter and Gauge. A counter is a cumulative metric that represents a single monotonically increasing counter whose value can only increase or be reset to zero on restart. For example, you can use a counter to represent the number of requests served, tasks completed, or errors. The Gauge metric instance represents a single numerical value that can arbitrarily go up and down, and also based on the statistics configurations provided to the Gauge, it can also report the statistics such as max, min, mean, percentiles, etc.
Counter Samples
Create
The following code snippets provides the information on how Counter instances can be created. Instantiating the counter will simply create an instance based on the params passed.
Register
The counter can be registered with the global metrics registry. Therefore, it can be looked up later without having the reference of the counter that was created. Also, only the registered counters will be reported to the Metrics reporter such as Prometheus. In case, if there is already another non counter metric registered, then there will be an error returned. But if it's another counter instance, then the registered counter instance will be returned.
Unregister
The counter can be unregistered with the global metrics registry if it is already registered. If a metrics is unregistered, then further it'll not be included in metrics reporting.
Increment
The counter can be incremented without passing any params (defaulted to 1), or by a specific amount.
Reset
The counter can be resetted to default amount = 0.
Get Value
The current value can be retrieved by this operation.
Gauge Samples
Create
The following code snippets provides the information on how Gauge instances can be created. Instantiating the gauge will simply create an instance based on the params passed.
Register
The gauge can be registered with the global metrics registry, therefore it can be looked up later without having the reference of the gauge that was created. Also, only the registered counters will be reported to the Metrics reporter such as Prometheus. In case, if there is already another non gauge metric registered, then there will be an error returned. But if it's another gauge instance, then the registered gauge instance will be returned.
Unregister
The gauge can be unregistered with the global metrics registry if it is already registered. If a metrics is unregistered, then further it'll not be included in metrics reporting.
Increment
The gauge can be incremented without passing any params (defaulted to 1.0), or by a specific amount.
Decrement
The gauge can be decremented without passing any params (defaulted to 1.0), or by a specific amount.
Set Value
This method sets the gauge's value with specific amount.
Get Value
The current value can be retrieved by this operation.
Get Snapshot
This method retrieves current snapshot of the statistics calculation based on the configurations passed to the gauge. If the statistics are disabled, then it'll be returning nil ().
Global Metrics Samples
Get All Metrics
This method returns all the metrics that are registered in the global metrics registry. This method is mainly useful for metric reporters, where they can fetch all metrics, format those, and report.
Lookup Metric
This method will lookup for the metric from the global metric registry and return it.