News KrakenD Enterprise v2.6 released with OpenTelemetry, FIPS-140, gRPC server and more

Community Documentation

Recent changes

You are viewing a previous version of KrakenD Community Edition (v1.3) , go to the latest version

Exporting metrics, logs, and events to the OpenCensus Agent

Document updated on May 3, 2021

The ocagent exporter sends OpenCensus Stats and Traces to the OpenCensus Agent, instead of pushing data to backends’ exporters.

For instance, you can enable ocagent to upload data to the OpenCensus Agent, and from there, the agent is simply scraped by a Prometheus.

You can integrate the OpenCensus Agent with Azure Monitor, Jaeger, or Prometheus to name a few examples.

Enabling it only requires you to add the ocagent exporter in the opencensus module.

The following configuration snippet sends the data:

"github_com/devopsfaith/krakend-opencensus": {
  "exporters": {
   "ocagent": {
      "address": "collector",
      "service_name": "krakend",
      "reconnection": "2s",
       "insecure": false,
      "enable_compression": true,
      "headers": {
        "header1": "value1"
      }
    }
  }
}
  • address (string): The address of your Azure Monitor collector.
  • service_name (string): An identifier of your service.
  • reconnection (time): The reconnection time, you need to specify its units, examples: 1000ms, 2s, 1m
  • insecure (bool): Whether the connection can be established in plain or not.
  • enable_compression (bool): Whether to send data compressed or not.
  • headers (object): List of keys and values for the headers sent:
    • header key: string
    • header value: string

See also the additional settings of the Opencensus module that can be declared.

Scarf

Unresolved issues?

The documentation is only a piece of the help you can get! Whether you are looking for Open Source or Enterprise support, see more support channels that can help you.