Hi,
I have been using Get-AzureADAuditSignInLogs to retrieve signin log entries and have found that executing the same command multiple times produces varying sets of entries.
e.g.
Get-AzureADAuditSignInLogs -All:$true -Filter "createdDateTime gt 2022-04-11 and createdDateTime lt 2022-04-12"
=> 124,589
Get-AzureADAuditSignInLogs -All:$true -Filter "createdDateTime gt 2022-04-11 and createdDateTime lt 2022-04-12"
=> 124,600
There are entries missing/added between the results, not just additional records.
These dates are in the middle of the 30 day window so shouldn't be impacted by recent additions or recent removals.
AzureADPreview version 2.0.2.149
Any insight is appreciated!
Dominic