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-monitor/logs/azure-monitor-data-explorer-proxy.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,8 @@ union customEvents, adx('https://help.kusto.windows.net/Samples').StormEvents
51
51
```kusto
52
52
let CL1 = adx('https://help.kusto.windows.net/Samples').StormEvents;
53
53
union customEvents, CL1 | take 10
54
-
```
54
+
55
+
```sql
55
56
56
57
> [!TIP]
57
58
> Shorthand format is allowed: *ClusterName*/*InitialCatalog*. For example, `adx('help/Samples')` is translated to `adx('help.kusto.windows.net/Samples')`.
@@ -60,7 +61,7 @@ When you use the [`join` operator](/azure/data-explorer/kusto/query/joinoperator
60
61
61
62
For example:
62
63
63
-
```kusto
64
+
kusto
64
65
AzureDiagnostics
65
66
| join hint.remote=left adx("cluster=ClusterURI").AzureDiagnostics on (ColumnName)
66
67
```
@@ -145,11 +146,12 @@ union AzureActivity, arg("").Resources
145
146
```kusto
146
147
let CL1 = arg("").Resources ;
147
148
union AzureActivity, CL1 | take 10
148
-
```
149
+
150
+
```sql
149
151
150
152
When you use the [`join` operator](/azure/data-explorer/kusto/query/joinoperator) instead of union, you need to use a [`hint`](/azure/data-explorer/kusto/query/joinoperator#join-hints) to combine the data in Azure Resource Graph with data in the Log Analytics workspace. Use `Hint.remote={Direction of the Log Analytics Workspace}`. For example:
151
153
152
-
```kusto
154
+
kusto
153
155
Perf | where ObjectName == "Memory" and (CounterName == "Available MBytes Memory")
0 commit comments