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
The provisioning of the Log Analytics cluster takes a while to complete. Use one of the following methods to check the *ProvisioningState* property. The value is *ProvisioningAccount* while provisioning and *Succeeded* when completed.
125
128
126
-
**CLI**
129
+
#### [CLI](#tab/cli)
127
130
128
131
```azurecli
129
132
az account set --subscription "cluster-subscription-id"
130
133
131
134
az monitor log-analytics cluster show --resource-group "resource-group-name" --name "cluster-name"
Send a GET request on the cluster resource and look at the *provisioningState* value. The value is *ProvisioningAccount* while provisioning and *Succeeded* when completed.
145
148
@@ -208,7 +211,8 @@ Linking a workspace can be performed only after the completion of the Log Analyt
208
211
209
212
Use the following commands to link a workspace to a cluster:
210
213
211
-
**CLI**
214
+
#### [CLI](#tab/cli)
215
+
212
216
```azurecli
213
217
# Find cluster resource ID
214
218
az account set --subscription "cluster-subscription-id"
@@ -223,7 +227,7 @@ $workspaceResourceId = az monitor log-analytics workspace list --resource-group
223
227
az resource wait --deleted --ids $workspaceResourceId --include-response-body true
When a cluster is configured with customer-managed keys, data ingested to the workspaces after the link operation completion is stored encrypted with your managed key. The workspace link operation can take up to 90 minutes to complete and you can check the state by sending Get request to workspace and observe if *clusterResourceId* property is present in the response under *features*.
270
274
271
-
**CLI**
275
+
#### [CLI](#tab/cli)
276
+
272
277
```azurecli
273
278
az account set --subscription "workspace-subscription-id"
274
279
275
280
az monitor log-analytics workspace show --resource-group "resource-group-name" --workspace-name "workspace-name"
az account set --subscription "cluster-subscription-id"
421
426
422
427
az monitor log-analytics cluster list
423
428
```
424
429
425
-
**PowerShell**
430
+
#### [PowerShell](#tab/powershell)
426
431
427
432
```powershell
428
433
Select-AzSubscription "cluster-subscription-id"
429
434
430
435
Get-AzOperationalInsightsCluster
431
436
```
432
-
**REST API**
437
+
#### [REST API](#tab/restapi)
433
438
434
439
*Call*
435
440
@@ -449,23 +454,23 @@ The same as for 'clusters in a resource group', but in subscription scope.
449
454
450
455
When the data volume to your linked workspaces change over time and you want to update the Commitment Tier level appropriately. The tier is specified in units of GB and can have values of 500, 1000, 2000 or 5000 GB/day. Note that you don't have to provide the full REST request body but should include the sku.
451
456
452
-
**CLI**
457
+
#### [CLI](#tab/cli)
453
458
454
459
```azurecli
455
460
az account set --subscription "cluster-subscription-id"
The *billingType* property determines the billing attribution for the cluster and its data:
496
+
-*Cluster* (default) -- billing is attributed to the Cluster resource
497
+
-*Workspaces* -- billing is attributed to linked workspaces proportionally. When data volume from all linked workspaces is below Commitment Tier level, the bill for the remaining volume is attributed to the cluster
The *billingType* property determines the billing attribution for the cluster and its data:
499
-
-*Cluster* (default) -- billing is attributed to the Cluster resource
500
-
-*Workspaces* -- billing is attributed to linked workspaces proportionally. When data volume from all linked workspaces is below Commitment Tier level, the bill for the remaining volume is attributed to the cluster
You can unlink a workspace from a cluster at any time. The workspace pricing tier is changed to per-GB, data ingested to cluster before the unlink operation remains in the cluster, and new data to workspace get ingested to Log Analytics. You can query data as usual and the service performs cross-cluster queries seamlessly. If cluster was configured with Customer-managed key (CMK), data remains encrypted with your key and accessible, while your key and permissions to Key Vault remain.
522
533
523
-
> [!NOT]
534
+
> [!NOTE]
524
535
> There is a limit of two link operations for a specific workspace within a month to prevent data distribution across clusters. Contact support if you reach limit.
525
536
526
537
Use the following commands to unlink a workspace from cluster:
527
538
528
-
**CLI**
539
+
#### [CLI](#tab/cli)
529
540
530
541
```azurecli
531
542
az account set --subscription "workspace-subscription-id"
0 commit comments