Skip to content

Commit 838d721

Browse files
Merge pull request #239556 from yossi-y/main
Dedicated cluster unlink and cross query identifier
2 parents 80472bd + 9398b2b commit 838d721

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

articles/azure-monitor/alerts/alerts-log-query.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Log alert rules using [cross-resource queries](../logs/cross-workspace-query.md)
5555

5656
```Kusto
5757
union
58-
app('Contoso-app1').requests,
59-
app('Contoso-app2').requests,
60-
workspace('Contoso-workspace1').Perf
58+
app('00000000-0000-0000-0000-000000000001').requests,
59+
app('00000000-0000-0000-0000-000000000002').requests,
60+
workspace('00000000-0000-0000-0000-000000000001').Perf
6161
```
6262

6363
>[!NOTE]
64-
> [Cross-resource queries](../logs/cross-workspace-query.md) are supported in the new [scheduledQueryRules API](/rest/api/monitor/scheduledqueryrule-2021-08-01/scheduled-query-rules). If you still use the [legacy Log Analytics Alert API](./api-alerts.md) for creating log alerts, see [Upgrade legacy rules management to the current Azure Monitor Log Alerts API](/previous-versions/azure/azure-monitor/alerts/alerts-log-api-switch) to learn about switching.
64+
> [Cross-resource queries](../logs/cross-workspace-query.md) are supported in the new [scheduledQueryRules API](/rest/api/monitor/scheduledqueryrule-2021-08-01/scheduled-query-rules). If you still use the [legacy Log Analytics Alert API](./api-alerts.md) for creating log alerts, see [Upgrade legacy rules management to the current Azure Monitor Log Alerts API](./alerts-log-api-switch.md) to learn about switching.
6565
6666
## Examples
6767

articles/azure-monitor/logs/cross-workspace-query.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ There are two methods to query data that's stored in multiple workspaces and app
2525
## Cross-resource query limits
2626

2727
* The number of Application Insights resources and Log Analytics workspaces that you can include in a single query is limited to 100.
28-
* Cross-resource queries in log alerts are only supported in the current [scheduledQueryRules API](/rest/api/monitor/scheduledqueryrule-2018-04-16/scheduled-query-rules). If you're using the legacy Log Analytics Alerts API, you'll need to [switch to the current API](/previous-versions/azure/azure-monitor/alerts/alerts-log-api-switch).
28+
* Cross-resource queries in log alerts are only supported in the current [scheduledQueryRules API](/rest/api/monitor/scheduledqueryrule-2018-04-16/scheduled-query-rules). If you're using the legacy Log Analytics Alerts API, you'll need to [switch to the current API](../alerts/alerts-log-api-switch.md).
2929
* References to a cross resource, such as another workspace, should be explicit and can't be parameterized. See [Identify workspace resources](#identify-workspace-resources) for examples.
3030

3131
## Query across Log Analytics workspaces and from Application Insights
@@ -72,7 +72,7 @@ Example for a query across two workspaces:
7272
```
7373
union
7474
Update,
75-
workspace("").Update, workspace("00000000-0000-0000-0000-000000000000").Update
75+
workspace("00000000-0000-0000-0000-000000000001").Update, workspace("00000000-0000-0000-0000-000000000002").Update
7676
| where TimeGenerated >= ago(1h)
7777
| where UpdateState == "Needed"
7878
| summarize dcount(Computer) by Classification

articles/azure-monitor/logs/logs-dedicated-clusters.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,10 @@ The managed identity service generates the *principalId* GUID when you create th
205205

206206
## Link a workspace to a cluster
207207

208-
When a Log Analytics workspace is linked to a dedicated cluster, new data ingested to the workspace, is routed to the cluster while existing data remains in the existing Log Analytics cluster. If the dedicated cluster is configured with customer-managed keys (CMK), new ingested data is encrypted with your key. The system abstracts the data location, you can query data as usual while the system performs cross-cluster queries in the background.
208+
When a Log Analytics workspace is linked to a dedicated cluster, the workspace billing plan in workspace is changed per cluster plan, new data ingested to the workspace is routed to the cluster, and existing data remains in Log Analytics cluster. Linking a workspace has no affect on data ingestion and query experiences.
209+
210+
Queries and experiences aren't affected by the
211+
If the dedicated cluster is configured with customer-managed keys (CMK), new ingested data is encrypted with your key. The system abstracts the data location, you can query data as usual while the system performs cross-cluster queries in the background.
209212

210213
A cluster can be linked to up to 1,000 workspaces. Linked workspaces can be located in the same region as the cluster. A workspace can't be linked to a cluster more than twice a month, to prevent data fragmentation.
211214

@@ -544,7 +547,7 @@ Content-type: application/json
544547

545548
### Unlink a workspace from cluster
546549

547-
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.
550+
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.
548551

549552
> [!WARNING]
550553
> Unlinking a workspace does not move workspace data out of the cluster. Any data collected for workspace while linked to cluster, remains in cluster for the retention period defined in workspace, and accessible as long as cluster isn't deleted.

0 commit comments

Comments
 (0)