If you are reading this tutorial, you probably already have an idea of the OpenTelemetry concepts behind distributed tracing. Here is the definition of those concepts according to OpenTelemetry: Traces track the progression of a single request, called a trace, as it is handled by services that make up an application. The request may be initiated by a user or an application. Distributed tracing is a form of tracing that traverses process, network and security boundaries.| OpenTelemetry
This guide explains how to configure open-telemetry collector and OTLP(OpenTelemetry Protocol) configurations in the Cortex. Context The open-telemetry collector can write collected metrics to the Cortex with the Prometheus and OTLP formats. Push with Prometheus format To push metrics via the Prometheus format, we can use prometheusremotewrite exporter in the open-telemetry collector. In the exporters and service sections in the open-telemetry collector yaml file, we can add as follows: expor...| Cortex