Skip to content

Commit 71c0f9a

Browse files
committed
Fix plugin name
Signed-off-by: Shizuo Fujita <fujita@clear-code.com>
1 parent a87e1b6 commit 71c0f9a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ for using Fluentd to export OpenTelemetry traces and metrics.
55

66
The telemetry data have been provided by js application in `app` directory.
77

8-
* metrics.js: OpenTelemetry instrumented application that exports metrics to an endpoint (Fluentd) using the otlp protocol
9-
* tracing.js: OpenTelemetry instrumented application that exports trace data to an endpoint (Fluentd) using the otlp protocol
8+
* metrics.js: OpenTelemetry instrumented application that exports metrics to an endpoint (Fluentd) using the OpenTelemetry protocol
9+
* tracing.js: OpenTelemetry instrumented application that exports trace data to an endpoint (Fluentd) using the OpenTelemetry protocol
1010

1111
### Structure
1212

example/fluentd/fluent.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<source>
2-
@type otlp
3-
tag otlp
2+
@type opentelemetry
3+
tag opentelemetry
44

55
# Experimental
66
# <grpc>
@@ -14,8 +14,8 @@
1414
</http>
1515
</source>
1616

17-
<match otlp.**>
18-
@type otlp
17+
<match opentelemetry.**>
18+
@type opentelemetry
1919
<buffer []>
2020
@type memory
2121
flush_mode immediate

0 commit comments

Comments
 (0)