summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/ctraces/examples/otlp-encoder/README.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:23 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:44 +0000
commit836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch)
tree1604da8f482d02effa033c94a84be42bc0c848c3 /fluent-bit/lib/ctraces/examples/otlp-encoder/README.md
parentReleasing debian version 1.44.3-2. (diff)
downloadnetdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz
netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fluent-bit/lib/ctraces/examples/otlp-encoder/README.md')
-rw-r--r--fluent-bit/lib/ctraces/examples/otlp-encoder/README.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/fluent-bit/lib/ctraces/examples/otlp-encoder/README.md b/fluent-bit/lib/ctraces/examples/otlp-encoder/README.md
deleted file mode 100644
index 78e65aca3..000000000
--- a/fluent-bit/lib/ctraces/examples/otlp-encoder/README.md
+++ /dev/null
@@ -1,26 +0,0 @@
-# Instructions to run
-
-After building the project with `-CTR_DEV=on`, the example can be found at `build/examples/ctraces-otlp-encoder`
-
-The example encodes a ctraces context to a buffer and sends it to a locally running instance of the [OpenTelemetry Collector](https://opentelemetry.io/docs/collector/). After setting up the collector locally by [following the instructions from their docs](https://opentelemetry.io/docs/collector/getting-started/), you can start the collector with the following config file:
-
-```yaml
-receivers:
- otlp:
- protocols:
- http:
- endpoint: "0.0.0.0:4318"
-
-exporters:
- logging:
- loglevel: debug
-
-service:
- pipelines:
- traces:
- receivers: [otlp]
- exporters: [logging]
-```
-
-Now you can run the example and see the trace data logged by the collector instance.
-