From 828c96b1274db069d4d6cdebfde0beb012bb5146 Mon Sep 17 00:00:00 2001 From: Fernando Rocha Date: Mon, 27 Jan 2025 10:32:51 -0800 Subject: [PATCH 1/9] Including .NET sample for subscriber, fixing parameter name on declarative subscription Signed-off-by: Fernando Rocha --- .../building-blocks/pubsub/pubsub-raw.md | 54 +++++++++++++++++-- 1 file changed, 50 insertions(+), 4 deletions(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md index 6e518fa96..844750650 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md @@ -74,9 +74,54 @@ Dapr apps are also able to subscribe to raw events coming from existing pub/sub ### Programmatically subscribe to raw events -When subscribing programmatically, add the additional metadata entry for `rawPayload` so the Dapr sidecar automatically wraps the payloads into a CloudEvent that is compatible with current Dapr SDKs. +When subscribing programmatically, add the additional metadata entry for `rawPayload` - `isRawPayload` on .NET - so the Dapr sidecar automatically wraps the payloads into a CloudEvent that is compatible with current Dapr SDKs. -{{< tabs "Python" "PHP SDK" >}} +{{< tabs ".NET" "Python" "PHP SDK" >}} + +{{% codetab %}} + +```csharp +using System.Text.Json; +using System.Text.Json.Serialization; + + +var builder = WebApplication.CreateBuilder(args); +var app = builder.Build(); + +app.MapGet("/", () => "Subscriber API"); + +app.MapGet("/dapr/subscribe", () => +{ + var subscriptions = new[] + { + new + { + pubsubname = "pubsub", + topic = "messages", + route = "/messages", + metadata = new Dictionary + { + { "isRawPayload", "true" } + } + } + }; + return Results.Ok(subscriptions); +}); + +app.MapPost("/messages", async (HttpContext context) => +{ + using var reader = new StreamReader(context.Request.Body); + var json = await reader.ReadToEndAsync(); + + Console.WriteLine($"Raw message received: {json}"); + + return Results.Ok(); +}); + +app.Run(); +``` + +{{% /codetab %}} {{% codetab %}} @@ -151,7 +196,7 @@ spec: default: /dsstatus pubsubname: pubsub metadata: - rawPayload: "true" + isRawPayload: "true" scopes: - app1 - app2 @@ -161,4 +206,5 @@ scopes: - Learn more about [publishing and subscribing messages]({{< ref pubsub-overview.md >}}) - List of [pub/sub components]({{< ref supported-pubsub >}}) -- Read the [API reference]({{< ref pubsub_api.md >}}) \ No newline at end of file +- Read the [API reference]({{< ref pubsub_api.md >}}) +- Read the .NET sample on how to [consume Kafka messages without CloudEvents](https://github.com/dapr/samples/pubsub-raw-payload) \ No newline at end of file From bd9eb23110f43db5fa7f4304b0e4e945dd67f1dd Mon Sep 17 00:00:00 2001 From: Fernando Rocha Date: Thu, 30 Jan 2025 18:13:44 -0800 Subject: [PATCH 2/9] including .NET publisher example Signed-off-by: Fernando Rocha --- .../building-blocks/pubsub/pubsub-raw.md | 42 ++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md index 844750650..6431b97cc 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md @@ -20,7 +20,7 @@ Not using CloudEvents disables support for tracing, event deduplication per mess To disable CloudEvent wrapping, set the `rawPayload` metadata to `true` as part of the publishing request. This allows subscribers to receive these messages without having to parse the CloudEvent schema. -{{< tabs curl "Python SDK" "PHP SDK">}} +{{< tabs curl ".NET" "Python SDK" "PHP SDK">}} {{% codetab %}} ```bash @@ -28,6 +28,46 @@ curl -X "POST" http://localhost:3500/v1.0/publish/pubsub/TOPIC_A?metadata.rawPay ``` {{% /codetab %}} +{{% codetab %}} + +```csharp +using Dapr.Client; +using Shared; + +var builder = WebApplication.CreateBuilder(args); +builder.Services.AddControllers().AddDapr(); + +var app = builder.Build(); + +app.MapGet("/", () => "Publisher API"); + +app.MapPost("/publish", async (DaprClient daprClient) => +{ + var message = new Message( + Guid.NewGuid().ToString(), + $"Hello at {DateTime.UtcNow}", + DateTime.UtcNow + ); + + await daprClient.PublishEventAsync( + "pubsub", // pubsub name + "messages", // topic name + message, // message data + new Dictionary + { + { "rawPayload", "true" }, + { "content-type", "application/json" } + } + ); + + return Results.Ok(message); +}); + +app.Run(); +``` + +{{% /codetab %}} + {{% codetab %}} ```python from dapr.clients import DaprClient From 345a491977ec6020adacc528158a9e9cc17e92c1 Mon Sep 17 00:00:00 2001 From: Jorge Castillo Date: Tue, 4 Feb 2025 16:37:37 +0100 Subject: [PATCH 3/9] Update serviceinvocation-quickstart.md Updated csharp checkout code and the path for the apps, quickstart was missing Signed-off-by: Jorge Castillo --- .../serviceinvocation-quickstart.md | 50 +++++++++---------- 1 file changed, 23 insertions(+), 27 deletions(-) diff --git a/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md index 4bd2b237b..ae5f9aa66 100644 --- a/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md @@ -45,7 +45,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd service_invocation/python/http +cd quickstarts/service_invocation/python/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -191,7 +191,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd service_invocation/javascript/http +cd quickstarts/service_invocation/javascript/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -331,7 +331,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd service_invocation/csharp/http +cd quickstarts/service_invocation/csharp/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -439,13 +439,11 @@ app.MapPost("/orders", (Order order) => In the Program.cs file for the `checkout` service, you'll notice there's no need to rewrite your app code to use Dapr's service invocation. You can enable service invocation by simply adding the `dapr-app-id` header, which specifies the ID of the target service. ```csharp -var client = new HttpClient(); -client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json")); +var client = DaprClient.CreateInvokeHttpClient(appId: "order-processor"); +var cts = new CancellationTokenSource(); -client.DefaultRequestHeaders.Add("dapr-app-id", "order-processor"); - -var response = await client.PostAsync($"{baseURL}/orders", content); - Console.WriteLine("Order passed: " + order); +var response = await client.PostAsJsonAsync("/orders", order, cts.Token); +Console.WriteLine("Order passed: " + order); ``` {{% /codetab %}} @@ -477,7 +475,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd service_invocation/java/http +cd quickstarts/service_invocation/java/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -616,7 +614,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd service_invocation/go/http +cd quickstarts/service_invocation/go/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -765,7 +763,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd service_invocation/python/http/order-processor +cd quickstarts/service_invocation/python/http/order-processor ``` Install the dependencies and build the application: @@ -800,7 +798,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd service_invocation/python/http/checkout +cd quickstarts/service_invocation/python/http/checkout ``` Install the dependencies and build the application: @@ -906,7 +904,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd service_invocation/javascript/http/order-processor +cd quickstarts/service_invocation/javascript/http/order-processor ``` Install the dependencies: @@ -934,7 +932,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd service_invocation/javascript/http/checkout +cd quickstarts/service_invocation/javascript/http/checkout ``` Install the dependencies: @@ -1038,7 +1036,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd service_invocation/csharp/http/order-processor +cd quickstarts/service_invocation/csharp/http/order-processor ``` Install the dependencies: @@ -1070,7 +1068,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd service_invocation/csharp/http/checkout +cd quickstarts/service_invocation/csharp/http/checkout ``` Install the dependencies: @@ -1089,13 +1087,11 @@ dapr run --app-id checkout --app-protocol http --dapr-http-port 3500 -- dotnet r In the Program.cs file for the `checkout` service, you'll notice there's no need to rewrite your app code to use Dapr's service invocation. You can enable service invocation by simply adding the `dapr-app-id` header, which specifies the ID of the target service. ```csharp -var client = new HttpClient(); -client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json")); +var client = DaprClient.CreateInvokeHttpClient(appId: "order-processor"); +var cts = new CancellationTokenSource(); -client.DefaultRequestHeaders.Add("dapr-app-id", "order-processor"); - -var response = await client.PostAsync($"{baseURL}/orders", content); - Console.WriteLine("Order passed: " + order); +var response = await client.PostAsJsonAsync("/orders", order, cts.Token); +Console.WriteLine("Order passed: " + order); ``` ### Step 5: Use with Multi-App Run @@ -1178,7 +1174,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd service_invocation/java/http/order-processor +cd quickstarts/service_invocation/java/http/order-processor ``` Install the dependencies: @@ -1206,7 +1202,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd service_invocation/java/http/checkout +cd quickstarts/service_invocation/java/http/checkout ``` Install the dependencies: @@ -1309,7 +1305,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd service_invocation/go/http/order-processor +cd quickstarts/service_invocation/go/http/order-processor ``` Install the dependencies: @@ -1343,7 +1339,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd service_invocation/go/http/checkout +cd quickstarts/service_invocation/go/http/checkout ``` Install the dependencies: From f6bd09836513208e7752065b8c835e68088c64c2 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Tue, 4 Feb 2025 11:54:13 -0800 Subject: [PATCH 4/9] Update daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md Co-authored-by: Marc Duiker Signed-off-by: Mark Fussell --- .../building-blocks/pubsub/pubsub-raw.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md index 6431b97cc..806ae2cee 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md @@ -20,7 +20,7 @@ Not using CloudEvents disables support for tracing, event deduplication per mess To disable CloudEvent wrapping, set the `rawPayload` metadata to `true` as part of the publishing request. This allows subscribers to receive these messages without having to parse the CloudEvent schema. -{{< tabs curl ".NET" "Python SDK" "PHP SDK">}} +{{< tabs curl ".NET" "Python" "PHP">}} {{% codetab %}} ```bash From e98d40fd23807b71169d9588f662b17856308fd4 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Tue, 4 Feb 2025 11:57:17 -0800 Subject: [PATCH 5/9] Update daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md Co-authored-by: Marc Duiker Signed-off-by: Mark Fussell --- .../building-blocks/pubsub/pubsub-raw.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md index 806ae2cee..9c9b3da4a 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md @@ -116,7 +116,7 @@ Dapr apps are also able to subscribe to raw events coming from existing pub/sub When subscribing programmatically, add the additional metadata entry for `rawPayload` - `isRawPayload` on .NET - so the Dapr sidecar automatically wraps the payloads into a CloudEvent that is compatible with current Dapr SDKs. -{{< tabs ".NET" "Python" "PHP SDK" >}} +{{< tabs ".NET" "Python" "PHP" >}} {{% codetab %}} From 3175f1735f1ebdca5fcb1783b33131f38889c935 Mon Sep 17 00:00:00 2001 From: Jorge Castillo Date: Wed, 5 Feb 2025 11:47:22 +0100 Subject: [PATCH 6/9] Removed `quickstarts` Signed-off-by: Jorge Castillo --- .../serviceinvocation-quickstart.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md index ae5f9aa66..10c2012e9 100644 --- a/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/serviceinvocation-quickstart.md @@ -45,7 +45,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd quickstarts/service_invocation/python/http +cd service_invocation/python/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -191,7 +191,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd quickstarts/service_invocation/javascript/http +cd service_invocation/javascript/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -331,7 +331,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd quickstarts/service_invocation/csharp/http +cd service_invocation/csharp/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -475,7 +475,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd quickstarts/service_invocation/java/http +cd service_invocation/java/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -614,7 +614,7 @@ git clone https://github.com/dapr/quickstarts.git From the root of the Quickstart clone directory, navigate to the quickstart directory. ```bash -cd quickstarts/service_invocation/go/http +cd service_invocation/go/http ``` Install the dependencies for the `order-processor` and `checkout` apps: @@ -763,7 +763,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd quickstarts/service_invocation/python/http/order-processor +cd service_invocation/python/http/order-processor ``` Install the dependencies and build the application: @@ -798,7 +798,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd quickstarts/service_invocation/python/http/checkout +cd service_invocation/python/http/checkout ``` Install the dependencies and build the application: @@ -904,7 +904,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd quickstarts/service_invocation/javascript/http/order-processor +cd service_invocation/javascript/http/order-processor ``` Install the dependencies: @@ -932,7 +932,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd quickstarts/service_invocation/javascript/http/checkout +cd service_invocation/javascript/http/checkout ``` Install the dependencies: @@ -1036,7 +1036,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd quickstarts/service_invocation/csharp/http/order-processor +cd service_invocation/csharp/http/order-processor ``` Install the dependencies: @@ -1068,7 +1068,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd quickstarts/service_invocation/csharp/http/checkout +cd service_invocation/csharp/http/checkout ``` Install the dependencies: @@ -1174,7 +1174,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd quickstarts/service_invocation/java/http/order-processor +cd service_invocation/java/http/order-processor ``` Install the dependencies: @@ -1202,7 +1202,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd quickstarts/service_invocation/java/http/checkout +cd service_invocation/java/http/checkout ``` Install the dependencies: @@ -1305,7 +1305,7 @@ In a terminal window, from the root of the Quickstart clone directory navigate to `order-processor` directory. ```bash -cd quickstarts/service_invocation/go/http/order-processor +cd service_invocation/go/http/order-processor ``` Install the dependencies: @@ -1339,7 +1339,7 @@ In a new terminal window, from the root of the Quickstart clone directory navigate to the `checkout` directory. ```bash -cd quickstarts/service_invocation/go/http/checkout +cd service_invocation/go/http/checkout ``` Install the dependencies: From 9ad76c3c058f58725e0936546823305f8caaf8b6 Mon Sep 17 00:00:00 2001 From: Fernando Rocha Date: Wed, 5 Feb 2025 12:31:19 -0800 Subject: [PATCH 7/9] removing unecessary lines of code and moddifying verbiage around raw message subscriptions Signed-off-by: Fernando Rocha --- .../building-blocks/pubsub/pubsub-raw.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md index 9c9b3da4a..5b4fe2c1b 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/pubsub-raw.md @@ -32,15 +32,12 @@ curl -X "POST" http://localhost:3500/v1.0/publish/pubsub/TOPIC_A?metadata.rawPay ```csharp using Dapr.Client; -using Shared; var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers().AddDapr(); var app = builder.Build(); -app.MapGet("/", () => "Publisher API"); - app.MapPost("/publish", async (DaprClient daprClient) => { var message = new Message( @@ -114,7 +111,7 @@ Dapr apps are also able to subscribe to raw events coming from existing pub/sub ### Programmatically subscribe to raw events -When subscribing programmatically, add the additional metadata entry for `rawPayload` - `isRawPayload` on .NET - so the Dapr sidecar automatically wraps the payloads into a CloudEvent that is compatible with current Dapr SDKs. +When subscribing programmatically, add the additional metadata entry for `rawPayload` to allow the subscriber to receive a message that is not wrapped by a CloudEvent. For .NET, this metadata entry is called `isRawPayload`. {{< tabs ".NET" "Python" "PHP" >}} @@ -124,12 +121,9 @@ When subscribing programmatically, add the additional metadata entry for `rawPay using System.Text.Json; using System.Text.Json.Serialization; - var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); -app.MapGet("/", () => "Subscriber API"); - app.MapGet("/dapr/subscribe", () => { var subscriptions = new[] @@ -141,7 +135,8 @@ app.MapGet("/dapr/subscribe", () => route = "/messages", metadata = new Dictionary { - { "isRawPayload", "true" } + { "isRawPayload", "true" }, + { "content-type", "application/json" } } } }; From 2cfc0029762a2eca88c43406091a0ee388fa6385 Mon Sep 17 00:00:00 2001 From: fvanzee <> Date: Sat, 8 Feb 2025 16:05:52 +0100 Subject: [PATCH 8/9] update self-hosted-with-docker docs Increase tmpfs size to prevent "no space left on device" error Signed-off-by: fvanzee <5238563+fvanzee@users.noreply.github.com> --- .../operations/hosting/self-hosted/self-hosted-with-docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-docker.md b/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-docker.md index 78f0e2c75..700acc776 100644 --- a/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-docker.md +++ b/daprdocs/content/en/operations/hosting/self-hosted/self-hosted-with-docker.md @@ -149,7 +149,7 @@ services: - type: tmpfs target: /data tmpfs: - size: "10000" + size: "64m" networks: hello-dapr: null From 27683a62bae4be2ce1dfbd59cffaf2e17b81eb74 Mon Sep 17 00:00:00 2001 From: Vladimir Damov <37113660+vdamov@users.noreply.github.com> Date: Sat, 15 Feb 2025 17:39:03 +0200 Subject: [PATCH 9/9] Update deprecated exporter (#4543) Co-authored-by: Uncensored --- .../open-telemetry-collector-jaeger.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector-jaeger.yaml b/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector-jaeger.yaml index d8c0fe293..dac909542 100644 --- a/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector-jaeger.yaml +++ b/daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector-jaeger.yaml @@ -19,8 +19,8 @@ data: zpages: endpoint: :55679 exporters: - logging: - loglevel: debug + debug: + verbosity: detailed # Depending on where you want to export your trace, use the # correct OpenTelemetry trace exporter here. #