Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions content/en/docs/collector/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ cascade:
weight: 270
---

![OpenTelemetry Collector diagram with Jaeger, OTLP and Prometheus integration](img/otel-collector.svg)

## Introduction

The OpenTelemetry Collector offers a vendor-agnostic implementation of how to
Expand All @@ -18,6 +16,27 @@ and maintain multiple agents/collectors. This works with improved scalability
and supports open source observability data formats (e.g. Jaeger, Prometheus,
Fluent Bit, etc.) sending to one or more open source or commercial backends.

```mermaid
flowchart TD
subgraph Option1 ["Option 1: Direct Export (Dev/Simple)"]
direction LR
App1(["Application"]) --> B1[("Backend(s)")]
end

subgraph Option2 ["Option 2: Via Collector (Production)"]
direction LR
App2(["Application"]) --> Rec["Receivers"]

subgraph Collector ["OpenTelemetry Collector"]
direction LR
Rec --> Proc["Processors"]
Proc --> Exp["Exporters"]
end

Exp --> B2[("Backend(s)")]
end
```

## Objectives

- _Usability_: Reasonable default configuration, supports popular protocols,
Expand Down
Loading
Loading