Skip to content

Commit d2f108d

Browse files
committed
minor changes
1 parent d27866f commit d2f108d

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ ms.date: 01/24/2025
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. The dashboard is available when you run the [durable task scheduler emulator](./durable-task-scheduler.md#emulator-for-local-development) locally or create a scheduler resource on Azure. The former does not require authentication. The latter requires that you [assign the *Durable Task Data Contributor* role to your identity](./develop-with-durable-task-scheduler.md#accessing-dts-dashboard), after which you can access the dashboard via either:
1111
- The task hub's dashboard endpoint URL in the Azure portal
12-
- Navigate to `https://dashboard.durabletask.io/` and your task endpoint to connect to it.
13-
14-
> [!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.
12+
- Navigate to `https://dashboard.durabletask.io/` and your task hub endpoint to connect to it.
1613

1714
## Monitor orchestration progress and execution history
1815

articles/azure-functions/durable/durable-task-scheduler/includes/function-app-integrated-creation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@ author: lilyjma
2323
| Do you want to deploy code or container image? | Keep the **Code** option selected. |
2424
| Runtime stack | Select the runtime you're using for this quickstart. |
2525
| Version | Select your runtimei stack version. |
26-
| Region | Select [one of the supported regions](../durable-task-scheduler.md). |
26+
| Region | Select [one of the supported regions](../durable-task-scheduler.md#limitations-and-considerations). |
2727
| Operating System | Select your operating system. |
2828

2929
1. Select the **Durable Functions** tab.
3030

3131
1. Choose **Durable Task Scheduler** as the backend provider for your durable functions.
3232

33-
1. Create a scheduler resource. This action automatically creates a task hub.
33+
1. Create a scheduler resource. This action will automatically create a task hub.
3434

3535
:::image type="content" source="../media/create-durable-task-scheduler/durable-func-tab.png" alt-text="Screenshot of creating an App Service plan Function app.":::
3636

3737
| Field | Description |
3838
| ----- | ----------- |
3939
| Storage backend | Select **Durable Task Scheduler**. |
40-
| Region | Select the same region you selected in the Basics tab for your function app. |
40+
| Region | It is recommended that the scheduler and function app regions should be the same. |
4141
| Durable task scheduler | Use the scheduler name offered, or click **Create new** to create a custom name. |
42-
| Plan | Select the **Dedicated** plan. |
42+
| Plan | Only **Dedicated** is available at the moment. |
4343
| Capacity units | Currently, you can only choose one Capacity Unit as an option. |
4444

4545
1. Click **Review + create** to review the resource creation.
4646

47-
A user-assigned managed identity with the required RBAC role has been created automatically so that the Function app can access durable task scheduler. You can find in the summary view information related to the managed identity resource, such as:
47+
A user-assigned managed identity with the required RBAC permission will be created automatically so that the Function app can access durable task scheduler. You can find in the summary view information related to the managed identity resource, such as:
4848
- The RBAC assigned to it (*Durable Task Data Contributor*)
4949
- The assignment scope (the scheduler or task hub name)
5050

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

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In this quickstart, you configure a durable functions app to use the [durable ta
2828
## Prerequisites
2929

3030
This quickstart assumes you alredy have an Azure Functions project on your local computer with:
31-
- Durable functions added to your project include:
31+
- Durable functions added to your project including:
3232
- An [orchestrator function](../durable-functions-bindings.md#orchestration-trigger).
3333
- A [client function](../durable-functions-bindings.md#orchestration-client) that triggers the durable functions app.
3434
- The project configured for local debugging.
@@ -180,7 +180,7 @@ Get the durable task scheduler emulator port number in [the next step](#set-up-d
180180

181181
1. Run the application.
182182

183-
```sh
183+
```bash
184184
func start
185185
```
186186

@@ -213,7 +213,7 @@ Get the durable task scheduler emulator port number in [the next step](#set-up-d
213213

214214
:::image type="content" source="media/quickstart-durable-task-scheduler/docker-ports.png" alt-text="Screenshot of ports on Docker.":::
215215

216-
1. Click on the *default* task hub to see its dashboard.
216+
1. Click on the *default* task hub to see its dashboard. Learn more about the [durable task scheduler dashboard](./durable-task-scheduler-dashboard.md).
217217

218218
> [!NOTE]
219219
> The [durable task scheduler emulator](./durable-task-scheduler.md#emulator-for-local-development) stores orchestration data in memory, which means all data is lost when it shuts down.
@@ -228,6 +228,8 @@ Create a durable task scheduler instance and Azure Functions app on Azure follow
228228

229229
[!INCLUDE [function-app-integrated-creation](./includes/function-app-integrated-creation.md)]
230230

231+
Resource deployment could take around 15 to 20 minutes. Once that is finished, you can deploy your app to Azure.
232+
231233
### Deploy your function app to Azure
232234

233235
[!INCLUDE [functions-publish-project-vscode](../../../../includes/functions-deploy-project-vs-code.md)]
@@ -244,17 +246,17 @@ If your app is running on the Functions Premium plan, turn on the *Runtime Scale
244246

245247
Run the following command to get your function's URL:
246248

247-
```bash
248-
az functionapp function list --resource-group <RESOURCE_GROUP_NAME> --name <FUNCTION_APP_NAME> --query '[].{Function:name, URL:invokeUrlTemplate}' --output table
249+
```azurecli
250+
az functionapp function list --resource-group <RESOURCE_GROUP_NAME> --name <FUNCTION_APP_NAME> --query '[].{Function:name, URL:invokeUrlTemplate}' --output json
249251
```
250252

251253
### Check orchestration status
252254

253-
Check the status of the orchestration instance and activity details on the durable task scheduler dashboard. Accessing the dashboard requires you to login. Follow the instructions below to assign the required role to your identity.
255+
Check the status of the orchestration instance and activity details on the durable task scheduler dashboard. Accessing the dashboard requires you to login. Follow the instructions below to assign the required role-based access control (RBAC) permission to your identity.
254256

255257
[!INCLUDE [assign-dev-identity-rbac-portal](./includes/assign-dev-identity-rbac-portal.md)]
256258

257-
Finally, navigate to `https://dashboard.durabletask.io/` and click on **Add Endpoint**. Fill out the required fields to connect the task hub.
259+
Finally, click **Overview** on the left menu of the task hub resource and navigate to the dashboard URL located at the top *Essentials* section.
258260

259261
## Clean up resources
260262

0 commit comments

Comments
 (0)