Skip to content

Commit 7ee336f

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#106850
1 parent 666fc06 commit 7ee336f

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

articles/azure-monitor/logs/tutorial-logs-ingestion-portal.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -260,17 +260,16 @@ Instead of directly configuring the schema of the table, you can upload a file w
260260
```kusto
261261
source
262262
| extend TimeGenerated = todatetime(Time)
263-
| parse RawData with
263+
| parse kind = regex RawData with *
264+
':"'
264265
ClientIP:string
265-
' ' *
266-
' ' *
267-
' [' * '] "' RequestType:string
268-
" " Resource:string
266+
" - -" * '"'
267+
RequestType:string
268+
' '
269+
Resource:string
269270
" " *
270271
'" ' ResponseCode:int
271272
" " *
272-
| where ResponseCode != 200
273-
| project-away Time, RawData
274273
```
275274
276275
1. Select **Run** to view the results.

0 commit comments

Comments
 (0)