Skip to content

Commit 9eca4c7

Browse files
authored
Update how-to-investigate-device.md
------- cc: @batamig
1 parent d5b0e3c commit 9eca4c7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/defender-for-iot/device-builders/how-to-investigate-device.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this guide, use the investigation suggestions provided to help determine the
1313

1414
> [!div class="checklist"]
1515
> * Find your device data
16-
> * Investigate using kql queries
16+
> * Investigate using KQL queries
1717
1818
> [!NOTE]
1919
> The Microsoft Defender for IoT legacy experience under IoT Hub has been replaced by our new Defender for IoT standalone experience, in the Defender for IoT area of the Azure portal. The legacy experience under IoT Hub will not be supported after **March 31, 2023**.
@@ -41,11 +41,11 @@ Following configuration, do the following to access data stored in your Log Anal
4141

4242
To view insights and raw data about your IoT devices, go to your Log Analytics workspace [to access your data](#how-can-i-access-my-data).
4343

44-
See the sample kql queries below to get started with investigating alerts and activities on your device.
44+
See the sample KQL queries below to get started with investigating alerts and activities on your device.
4545

4646
### Related alerts
4747

48-
You can find out if other alerts were triggered around the same time through the following kql query:
48+
You can find out if other alerts were triggered around the same time through the following KQL query:
4949

5050
```
5151
let device = "YOUR_DEVICE_ID";
@@ -57,7 +57,7 @@ You can find out if other alerts were triggered around the same time through the
5757

5858
### Users with access
5959

60-
To find out which users have access to this device use the following kql query:
60+
To find out which users have access to this device use the following KQL query:
6161

6262
```
6363
let device = "YOUR_DEVICE_ID";
@@ -79,7 +79,7 @@ Use this data to discover:
7979

8080
### Open ports
8181

82-
To find out which ports in the device are currently in use or were used, use the following kql query:
82+
To find out which ports in the device are currently in use or were used, use the following KQL query:
8383

8484
```
8585
let device = "YOUR_DEVICE_ID";
@@ -107,7 +107,7 @@ Use this data to discover:
107107

108108
### User logins
109109

110-
To find users that logged into the device use the following kql query:
110+
To find users that logged into the device use the following KQL query:
111111

112112
```
113113
let device = "YOUR_DEVICE_ID";
@@ -139,7 +139,7 @@ Use the query results to discover:
139139

140140
### Process list
141141

142-
To find out if the process list is as expected, use the following kql query:
142+
To find out if the process list is as expected, use the following KQL query:
143143

144144
```
145145
let device = "YOUR_DEVICE_ID";

0 commit comments

Comments
 (0)