Forum Discussion

KevinLin's avatar
KevinLin
Copper Contributor
Feb 06, 2023
Solved

What does @ mean in KQL?

In page: Integrate external data - Training | Microsoft Learn and Extract data from unstructured string fields - Training | Microsoft Learn

 

What does @ mean in below two KQL:
Users |
where UserID in ((externaldata (UserID:string) [ @"https://storageaccount.blob.core.windows.net/storagecontainer/users.txt" h@"?...SAS..." // Secret token needed to access the blob ])) | ...

 

SecurityEvent | where EventID == 4672 and AccountType == 'User' | extend Account_Name = extract(@"^(.*\\)?([^@]*)(@.*)?$", 2, tolower(Account))

Resources