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/partner-solutions/datadog/create.md
+65-6Lines changed: 65 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,8 @@
2
2
title: Create a Datadog resource
3
3
description: Get started with Datadog on Azure by creating a new resource, configuring metrics and logs, and setting up single sign-on through Microsoft Entra ID.
4
4
ms.topic: quickstart
5
-
ms.date: 03/10/2025
5
+
zone_pivot_groups: datadog-create
6
+
ms.date: 09/04/2025
6
7
ms.custom:
7
8
- references_regions
8
9
- ai-gen-docs-bap
@@ -23,10 +24,66 @@ In this quickstart, you create a new instance of Datadog.
> The steps in this article are for creating a new Datadog organization. See [link to an existing Datadog organization](link-to-existing-organization.md) if you have an existing Datadog organization you'd prefer to link your Azure subscription to.
28
+
> The steps in this article are for creating a new Datadog organization. See [Link to an existing Datadog organization](link-to-existing-organization.md) if you have an existing Datadog organization you'd prefer to link your Azure subscription to.
29
+
30
+
::: zone pivot="azure-cli"
31
+
32
+
Start by preparing your environment for the Azure CLI:
After you sign in, use the [az datadog monitor create](/cli/azure/datadog/monitor#az-datadog-monitor-create) command to create the new monitor resource:
37
+
38
+
```azurecli
39
+
az datadog monitor create --name "myMonitor" --resource-group "myResourceGroup" \
> If you want the command to return before the create operation completes, add the optional parameter `--no-wait`. The operation continues to run until the Datadog monitor is created.
48
+
49
+
To pause CLI execution until a monitor's specific event or condition occurs, use the [az datadog monitor wait](/cli/azure/datadog/monitor#az-datadog-monitor-wait) command. For example, to wait until a monitor is created:
50
+
51
+
```azurecli
52
+
az datadog monitor wait --name "myMonitor" --resource-group "myResourceGroup" --created
53
+
```
54
+
55
+
To see a list of existing monitors, use the [az datadog monitor list](/cli/azure/datadog/monitor#az-datadog-monitor-list) command.
56
+
57
+
You can view all of the monitors in your subscription:
58
+
59
+
```azurecli
60
+
az datadog monitor list
61
+
```
62
+
63
+
Or, view the monitors in a resource group:
64
+
65
+
```azurecli
66
+
az datadog monitor list --resource-group "myResourceGroup"
67
+
```
68
+
69
+
To see the properties of a specific monitor, use the [az datadog monitor show](/cli/azure/datadog/monitor#az-datadog-monitor-show) command.
70
+
71
+
You can view the monitor by name:
72
+
73
+
```azurecli
74
+
az datadog monitor show --name "myMonitor" --resource-group "myResourceGroup"
75
+
```
76
+
77
+
Or, view the monitor by resource ID:
78
+
79
+
```azurecli
80
+
az datadog monitor show --ids "/subscriptions/{SubID}/resourceGroups/{myResourceGroup}/providers/Microsoft.Datadog/monitors/{myMonitor}"
0 commit comments