Skip to content

Commit f755b46

Browse files
committed
Update opentelemetry agent document with includeDapr and includeKeda sample
1 parent 6e57bc6 commit f755b46

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

articles/container-apps/opentelemetry-agents.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,52 @@ The following example ARM template shows how to use an OTLP endpoint named `cust
572572
}
573573
```
574574

575+
## Configure System Components OpenTelemetry Signals
576+
From api version 2024-08-02-preview, you might configure your container app environment to export system components OpenTelemetry signals.
577+
Now, we support Dapr traces and Keda metrics
578+
579+
### Dapr Traces
580+
```json
581+
{
582+
...
583+
"properties": {
584+
...
585+
"openTelemetryConfiguration": {
586+
...
587+
"tracesConfiguration": {
588+
"destinations": [
589+
"appInsights",
590+
"customDashboard"
591+
]
592+
"includeDapr": true
593+
}
594+
}
595+
}
596+
}
597+
```
598+
To learn more about how to use dapr in container apps [Dapr Overview](./dapr-overview.md)
599+
600+
### Keda Metrics
601+
```json
602+
{
603+
...
604+
"properties": {
605+
...
606+
"openTelemetryConfiguration": {
607+
...
608+
"metricsConfiguration": {
609+
"destinations": [
610+
"dataDog",
611+
"customDashboard"
612+
]
613+
"includeKeda": true
614+
}
615+
}
616+
}
617+
}
618+
```
619+
To learn more about KEDA support in container apps [Autoscale](scale-app.md)
620+
575621
## Example OpenTelemetry configuration
576622

577623
The following example template shows how you might configure your container app to collect telemetry data using Azure Monitor Application Insights, Datadog, and with a custom OTLP agent named `customDashboard`.

0 commit comments

Comments
 (0)