From 225d135c9a5ea42f2966355d86b5b4b5dae1b20c Mon Sep 17 00:00:00 2001 From: Michael Vernik Date: Tue, 24 Oct 2023 12:32:41 -0700 Subject: [PATCH] add otel_exporter directive to simple tracing example in readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index f19894b..98847c8 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,12 @@ This example sends telemetry data for all http requests. ```nginx http { + otel_exporter { + endpoint localhost:4317; + } + otel_trace on; + server { location / { proxy_pass http://backend;