Skip to content

Commit 4ac7b95

Browse files
authored
Merge branch 'v1.15' into patch-1
2 parents 6aebd2b + 58be5f3 commit 4ac7b95

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

daprdocs/content/en/operations/observability/tracing/otel-collector/open-telemetry-collector-appinsights.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Dapr integrates with [OpenTelemetry (OTEL) Collector](https://github.com/open-te
1111
## Prerequisites
1212

1313
- [Install Dapr on Kubernetes]({{< ref kubernetes >}})
14-
- [Set up an App Insights resource](https://docs.microsoft.com/azure/azure-monitor/app/create-new-resource) and make note of your App Insights instrumentation key.
14+
- [Set up an App Insights resource](https://docs.microsoft.com/azure/azure-monitor/app/create-new-resource) and make note of your App Insights connection string.
1515

1616
## Set up OTEL Collector to push to your App Insights instance
1717

1818
To push events to your App Insights instance, install the OTEL Collector to your Kubernetes cluster.
1919

2020
1. Check out the [`open-telemetry-collector-appinsights.yaml`](/docs/open-telemetry-collector/open-telemetry-collector-appinsights.yaml) file.
2121

22-
1. Replace the `<INSTRUMENTATION-KEY>` placeholder with your App Insights instrumentation key.
22+
1. Replace the `<CONNECTION_STRING>` placeholder with your App Insights connection string.
2323

2424
1. Apply the configuration with:
2525

daprdocs/content/en/reference/components-reference/supported-bindings/cron.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The Dapr cron binding supports following formats:
5050
For example:
5151

5252
* `30 * * * * *` - every 30 seconds
53-
* `0 15 * * * *` - every 15 minutes
53+
* `0 */15 * * * *` - every 15 minutes
5454
* `0 30 3-6,20-23 * * *` - every hour on the half hour in the range 3-6am, 8-11pm
5555
* `CRON_TZ=America/New_York 0 30 04 * * *` - every day at 4:30am New York time
5656

daprdocs/static/docs/open-telemetry-collector/open-telemetry-collector-appinsights.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ data:
2020
debug:
2121
verbosity: basic
2222
azuremonitor:
23-
endpoint: "https://dc.services.visualstudio.com/v2/track"
24-
instrumentation_key: "<INSTRUMENTATION-KEY>"
23+
connection_string: "<CONNECTION_STRING>"
2524
# maxbatchsize is the maximum number of items that can be
2625
# queued before calling to the configured endpoint
2726
maxbatchsize: 100

0 commit comments

Comments
 (0)