Forum Discussion

OrionWithrow's avatar
OrionWithrow
Brass Contributor
Apr 26, 2018
Solved

Last Update

We use the Windows Analytics modules, therefore do not have any agents (yet). All of our Data relies on Windows Telemetry. Is there any way to list machines that have not uploaded telemetry data in a...
  • Hi

    You can use the same logic like Heartbeat query for not reporting Computers. Of course some things needs to be changed. For example:

    Heartbeat | where TimeGenerated > ago(7d)  | summarize LastCall=max(TimeGenerated) by Computer | where LastCall < ago(15m)

    For the Heartbeat we are looking at data for the last 7 days and check for computers that hasn't reported in the last 15 minutes:

    For Windows Analytics module it could be:

    WaaSDeploymentStatus | where TimeGenerated > ago(7d)  | summarize LastCall=max(TimeGenerated) by Computer | where LastCall < ago(2d)

    It is best to check against Table that all computers report on certain intervals. I am not sure which table is that Windows Analytics but feel free to suggest if there is a better one. Here we can look for machines that haven't reported for 2 days. As Windows Analytics is send on bigger intervals than Heartbeat you will need to accommodate to that.

    Hope this helps.

Resources