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/defender-for-iot/device-builders/how-to-investigate-device.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ In this guide, use the investigation suggestions provided to help determine the
13
13
14
14
> [!div class="checklist"]
15
15
> * Find your device data
16
-
> * Investigate using kql queries
16
+
> * Investigate using KQL queries
17
17
18
18
> [!NOTE]
19
19
> 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
41
41
42
42
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).
43
43
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.
45
45
46
46
### Related alerts
47
47
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:
49
49
50
50
```
51
51
let device = "YOUR_DEVICE_ID";
@@ -57,7 +57,7 @@ You can find out if other alerts were triggered around the same time through the
57
57
58
58
### Users with access
59
59
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:
61
61
62
62
```
63
63
let device = "YOUR_DEVICE_ID";
@@ -79,7 +79,7 @@ Use this data to discover:
79
79
80
80
### Open ports
81
81
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:
83
83
84
84
```
85
85
let device = "YOUR_DEVICE_ID";
@@ -107,7 +107,7 @@ Use this data to discover:
107
107
108
108
### User logins
109
109
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:
111
111
112
112
```
113
113
let device = "YOUR_DEVICE_ID";
@@ -139,7 +139,7 @@ Use the query results to discover:
139
139
140
140
### Process list
141
141
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:
0 commit comments