You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-task-scheduler/durable-task-scheduler-dashboard.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,9 @@ ms.date: 01/24/2025
7
7
8
8
# Debug and manage orchestrations using the Azure Functions durable task scheduler dashboard (preview)
9
9
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:
11
11
- 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.
16
13
17
14
## Monitor orchestration progress and execution history
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-task-scheduler/includes/function-app-integrated-creation.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,28 +23,28 @@ author: lilyjma
23
23
| Do you want to deploy code or container image? | Keep the **Code** option selected. |
24
24
| Runtime stack | Select the runtime you're using for this quickstart. |
25
25
| 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). |
27
27
| Operating System | Select your operating system. |
28
28
29
29
1. Select the **Durable Functions** tab.
30
30
31
31
1. Choose **Durable Task Scheduler** as the backend provider for your durable functions.
32
32
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.
34
34
35
35
:::image type="content" source="../media/create-durable-task-scheduler/durable-func-tab.png" alt-text="Screenshot of creating an App Service plan Function app.":::
| 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. |
41
41
| 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. |
43
43
| Capacity units | Currently, you can only choose one Capacity Unit as an option. |
44
44
45
45
1. Click **Review + create** to review the resource creation.
46
46
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:
48
48
- The RBAC assigned to it (*Durable Task Data Contributor*)
49
49
- The assignment scope (the scheduler or task hub name)
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-task-scheduler/quickstart-durable-task-scheduler.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ In this quickstart, you configure a durable functions app to use the [durable ta
28
28
## Prerequisites
29
29
30
30
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:
32
32
- An [orchestrator function](../durable-functions-bindings.md#orchestration-trigger).
33
33
- A [client function](../durable-functions-bindings.md#orchestration-client) that triggers the durable functions app.
34
34
- 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
180
180
181
181
1. Run the application.
182
182
183
-
```sh
183
+
```bash
184
184
func start
185
185
```
186
186
@@ -213,7 +213,7 @@ Get the durable task scheduler emulator port number in [the next step](#set-up-d
213
213
214
214
:::image type="content" source="media/quickstart-durable-task-scheduler/docker-ports.png" alt-text="Screenshot of ports on Docker.":::
215
215
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).
217
217
218
218
> [!NOTE]
219
219
> 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
az functionapp function list --resource-group <RESOURCE_GROUP_NAME> --name <FUNCTION_APP_NAME> --query '[].{Function:name, URL:invokeUrlTemplate}' --output json
249
251
```
250
252
251
253
### Check orchestration status
252
254
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.
0 commit comments