Skip to content

Commit

Permalink
Merge pull request #286 from KenMAG/master
Browse files Browse the repository at this point in the history
Resolves issue #284 Learning Path 4 - Lab 1 - Exercise 1 - Create queries for Microsoft Sentinel using Kusto Query Language (KQL)
  • Loading branch information
KenMAG authored May 24, 2024
2 parents b0478ea + c6ebb7f commit ffceb92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Allfiles/SC200_module4_KQL_scripts.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ In this task, you will build basic KQL statements.
1. The following statement demonstrates the **search** operator, which searches all columns in the table for the value. In the Query Window enter the following statement and select **Run**:

```KQL
search "new"
search "location"
```

2. The following statement demonstrates searching across tables listed with the "in" clause. Enter the following statement and select **Run**:
Expand Down
10 changes: 8 additions & 2 deletions Instructions/Labs/LAB_AK_04_Lab1_Ex1_KQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,18 @@ In this task, you will build basic KQL statements.
>**Important:** For each query, clear the previous statement from the Query Window or open a new Query Window by selecting **+** after the last opened tab (up to 25).
1. The following statement demonstrates the **search** operator, which searches all columns in the table for the value. In the Query Window enter the following statement and select **Run**:
1. The following statement demonstrates the **search** operator, which searches all columns in the table for the value.
1. Change the *Time range* to **Last 30 minutes** in the Query Window.
1. In the Query Window enter the following statement and select **Run**:
```KQL
search "new"
search "location"
```
>**Note:** Using the *Search* operator without specific tables or qualifying clauses is less efficient than table-specific and column-specific text filtering.
1. The following statement demonstrates **search** across tables listed within the **in** clause. In the Query Window enter the following statement and select **Run**:
```KQL
Expand Down

0 comments on commit ffceb92

Please sign in to comment.