Skip to content

Commit 7ecb0b0

Browse files
committed
updated article to improve readability
1 parent ddc9e79 commit 7ecb0b0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

articles/log-analytics/log-analytics-cross-workspace-search.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.author: magoedte
2121

2222
Previously with Azure Log Analytics, you could only analyze data from within the current workspace and this limited your ability to query across multiple workspaces defined in your subscription.
2323

24-
Now you can query across multiple workspaces, providing a system-wide view of your data. You can only perform this type of query in the [Advanced portal](log-analytics-log-search-portals#advanced-analytics-portal), not in the Azure portal.
24+
Now you can query across multiple workspaces, providing a system-wide view of your data. You can only perform this type of query in the [Advanced portal](log-analytics-log-search-portals.md#advanced-analytics-portal), not in the Azure portal.
2525

2626
## Querying across Log Analytics workspaces
2727
To reference another workspace in your query, use the *workspace* identifier. For example, the following query returns summarized counts of updates needed by their classification from the Update table from both the current workspace, and another workspace named *contosoretail-it*.
@@ -30,21 +30,22 @@ To reference another workspace in your query, use the *workspace* identifier. F
3030
## Identifying resources
3131
Identifying a workspace can be done in several ways:
3232

33-
* Resource name - this is a human-readable name of the workspace, sometimes referred to as *component name*.
33+
* Resource name - is a human-readable name of the workspace, sometimes referred to as *component name*.
3434

3535
`workspace("contosoretail").Update | count`
3636

3737
>[!NOTE]
38-
>Identifying a workspace by its name assumes it is unique across all accessible subscriptions. If you have multiple applications with the specified name, the query will fail because of the ambiguity. In this case you must use one of the other identifiers.
38+
>Identifying a workspace by its name assumes it is unique across all accessible subscriptions. If you have multiple applications with the specified name, the query fails because of the ambiguity. In this case you must use one of the other identifiers.
3939
40-
* Qualified Name - this is the “full name” of the workspace, composed of the subscription name, resource group and component name in this format: *<subscriptionName>/<resourceGroup>/<componentName>*.
40+
* Qualified Name - is the “full name” of the workspace, composed of the subscription name, resource group and component name in this format: *<subscriptionName>/<resourceGroup>/<componentName>*.
4141

4242
`workspace('contoso/contosoretail/development').requests | count `
4343

44-
>[!NOTE]Because Azure subscription names are not unique, this identifier might be ambiguous.
44+
>[!NOTE]
45+
>Because Azure subscription names are not unique, this identifier might be ambiguous.
4546
>
4647
47-
* workspace ID - this is a GUID, the unique, immutable, public identifier of the workspace.
48+
* workspace ID - is a GUID, the unique, immutable, public identifier of the workspace.
4849

4950
`workspace("b438b4f6-912a-46d5-9cb1-b44069212ab4").Update | count`
5051

0 commit comments

Comments
 (0)