diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:44 +0000 |
commit | 836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch) | |
tree | 1604da8f482d02effa033c94a84be42bc0c848c3 /fluent-bit/lib/ctraces/examples/otlp-encoder/README.md | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-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.md | 26 |
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. - |