Microsoft Sentinel Security Services
Microsoft Sentinel gives you visibility across your environment, but only if the right data is connected and the right questions are being asked.
GEMXIT helps businesses plan, review and improve Microsoft Sentinel so security teams can investigate incidents, understand patterns and build better response workflows.
This includes data connectors, analytics rules, workbooks, KQL queries and practical security operations design.
Sentinel page summary
A service page for Microsoft Sentinel setup, SIEM visibility, analytics rule review, KQL workbooks and security operations.
What Microsoft Sentinel adds
Practical KQL example: after-hours activity
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
SigninLogs
| where TimeGenerated > ago(14d)
| extend HourOfDay = datetime_part("hour", TimeGenerated)
| where HourOfDay < 6 or HourOfDay > 20
| project
TimeGenerated,
UserPrincipalName,
IPAddress,
Location,
AppDisplayName,
ResultType,
ConditionalAccessStatus
| order by TimeGenerated desc
