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/data-explorer/ingest-data-no-code.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: orspodek
6
6
ms.reviewer: kerend
7
7
ms.service: data-explorer
8
8
ms.topic: tutorial
9
-
ms.date: 11/17/2019
9
+
ms.date: 01/29/2020
10
10
11
11
# Customer intent: I want to ingest monitoring data to Azure Data Explorer without one line of code, so that I can explore and analyze my data by using queries.
12
12
---
@@ -327,7 +327,7 @@ To map the activity log data to the table, use the following query:
327
327
2. Add the [update policy](/azure/kusto/concepts/updatepolicy) to the target table. This policy will automatically run the query on any newly ingested data in the *DiagnosticRawRecords* intermediate data table and ingest its results into the *DiagnosticMetrics* table:
@@ -341,7 +341,7 @@ To map the activity log data to the table, use the following query:
341
341
| mv-expand events = Records
342
342
| where isnotempty(events.operationName)
343
343
| project
344
-
Timestamp = todatetime(events.time),
344
+
Timestamp = todatetime(events['time']),
345
345
ResourceId = tostring(events.resourceId),
346
346
OperationName = tostring(events.operationName),
347
347
Result = tostring(events.resultType),
@@ -360,7 +360,7 @@ To map the activity log data to the table, use the following query:
360
360
2. Add the [update policy](/azure/kusto/concepts/updatepolicy) to the target table. This policy will automatically run the query on any newly ingested data in the *DiagnosticRawRecords* intermediate data table and ingest its results into the *DiagnosticLogs* table:
@@ -373,7 +373,7 @@ To map the activity log data to the table, use the following query:
373
373
ActivityLogsRawRecords
374
374
| mv-expand events = Records
375
375
| project
376
-
Timestamp = todatetime(events.time),
376
+
Timestamp = todatetime(events['time']),
377
377
ResourceId = tostring(events.resourceId),
378
378
OperationName = tostring(events.operationName),
379
379
Category = tostring(events.category),
@@ -390,7 +390,7 @@ To map the activity log data to the table, use the following query:
390
390
2. Add the [update policy](/azure/kusto/concepts/updatepolicy) to the target table. This policy will automatically run the query on any newly ingested data in the *ActivityLogsRawRecords* intermediate data table and ingest its results into the *ActivityLogs* table:
0 commit comments