Skip to content

Commit 714e164

Browse files
committed
Initial structure
1 parent b051daa commit 714e164

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

content/en/conf/1-extensions.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: OpenTelemetry Collector Extensions
3+
linkTitle: 1. Extensions
4+
weight: 1
5+
---
6+
7+
Extensions are available primarily for tasks that do not involve processing telemetry data. Examples of extensions include health monitoring, service discovery, and data forwarding. Extensions are optional.
8+
9+
```yaml
10+
extensions:
11+
health_check:
12+
pprof:
13+
endpoint: 0.0.0.0:1777
14+
zpages:
15+
endpoint: 0.0.0.0:55679
16+
```
17+
18+
## Health Check
19+
20+
## Performance Profiler
21+
22+
## zPages

content/en/conf/2-receivers.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: OpenTelemetry Collector Receivers
3+
linkTitle: 1. Receivers
4+
weight: 2
5+
---
6+
7+
A receiver, which can be push or pull based, is how data gets into the Collector. Receivers may support one or more data sources.

content/en/conf/3-processors.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: OpenTelemetry Collector Processors
3+
linkTitle: 1. Processors
4+
weight: 3
5+
---
6+
7+
Processors are run on data between being received and being exported. Processors are optional though some are recommended.

content/en/conf/4-exporters.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: OpenTelemetry Collector Exporters
3+
linkTitle: 1. Exporters
4+
weight: 4
5+
---
6+
7+
An exporter, which can be push or pull based, is how you send data to one or more backends/destinations. Exporters may support one or more data sources.

0 commit comments

Comments
 (0)