Skip to content

Commit 592487d

Browse files
committed
fixes for sign off
Signed-off-by: Hannah Hunter <[email protected]>
1 parent e19db94 commit 592487d

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

articles/azure-functions/durable/durable-task-scheduler/develop-with-durable-task-scheduler.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The Azure Functions durable task scheduler is a highly performant, fully-managed
1616
> [!div class="checklist"]
1717
> * Create a scheduler and task hub.
1818
> * Configure identity-based authentication for your application to access durable task scheduler.
19-
> * Monitor the status of your app and task hub on the dts dashboard.
19+
> * Monitor the status of your app and task hub on the durable task scheduler dashboard.
2020
2121
Learn more about durable task scheduler [features](./durable-task-scheduler.md#feature-highlights), [supported regions](./durable-task-scheduler.md#limitations-and-considerations), and [plans](./durable-task-scheduler.md#limitations-and-considerations).
2222

@@ -155,7 +155,7 @@ docker run -itP -e DTS_TASK_HUB_NAMES=taskhub1,taskhub2,taskhub3 mcr.microsoft.c
155155
156156
You can create a scheduler and task hub on Azure portal via two ways:
157157
- **Function app integrated creation:** *(recommended)* automatically creates the managed identity resource and RBAC assignment needed for your app to access durable task scheduler.
158-
- **Top-level creation:** Requires you to [manually assign RBAC](#configure-identity-based-authentication-for-app-to-access-dts) to configure scheduler access for your app.
158+
- **Top-level creation:** Requires you to [manually assign RBAC](#configure-identity-based-authentication-for-app-to-access-durable-task-scheduler) to configure scheduler access for your app.
159159
160160
> [!NOTE]
161161
> Durable task scheduler currently supports apps hosted in the **App Service** and **Functions Premium** plans, so this experience is available only when either of these plan types is picked.
@@ -506,11 +506,12 @@ For durable task scheduler apps on the Functions Premium plan, enable the *Runti
506506
507507
Run the following command:
508508
509-
```azurecli
510-
az resource update -g <resource_group> -n <function_app_name>/config/web --set properties.functionsRuntimeScaleMonitoringEnabled=1 --resource-type Microsoft.Web/sites
511-
```
509+
```azurecli
510+
az resource update -g <resource_group> -n <function_app_name>/config/web --set properties.functionsRuntimeScaleMonitoringEnabled=1 --resource-type Microsoft.Web/sites
511+
```
512512

513513
::: zone-end
514+
514515
## Next steps
515516

516517
Try out the [durable functions quickstart sample](quickstart-durable-task-scheduler.md).

articles/azure-functions/durable/durable-task-scheduler/durable-task-scheduler-dashboard.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
title: Debug and manage orchestrations using the Azure Functions durable task scheduler dashboard (preview)
33
description: Learn how to debug and manage your orchestrations using the Azure Functions durable task scheduler.
44
ms.topic: conceptual
5-
ms.date: 01/24/2025
5+
ms.date: 03/17/2025
66
---
77

88
# Debug and manage orchestrations using the Azure Functions durable task scheduler dashboard (preview)
99

10-
Observe, manage, and debug your task hub or scheduler's orchestations effectively using the durable task scheduler dashboard. Once you [assign the *Durable Task Data Contributor* role to your developer identity](./develop-with-durable-task-scheduler.md#accessing-dts-dashboard), you can access the dashboard via either:
10+
Observe, manage, and debug your task hub or scheduler's orchestations effectively using the durable task scheduler dashboard. Once you [assign the *Durable Task Data Contributor* role to your developer identity](./develop-with-durable-task-scheduler.md#accessing-durable-task-scheduler-dashboard), you can access the dashboard via either:
1111
- The task hub's dashboard endpoint URL in the Azure portal
1212
- Navigate to `https://dashboard.durabletask.io/` and your task endpoint to connect to it.
1313

1414
> [!NOTE]
15-
> Ensure your identity (email) has the **Durable Task Data Contributor** role [assigned](./includes/assign-dev-identity-rbac-portal.md) to it before accessing the dashboard.
15+
> Ensure [your developer identity (email) has the **Durable Task Data Contributor** role assigned to it](./develop-with-durable-task-scheduler.md#accessing-durable-task-scheduler-dashboard) before accessing the dashboard.
1616
1717
## Monitor orchestration progress and execution history
1818

0 commit comments

Comments
 (0)