Why I'm missing events on my Log Analytics Query?

Vinny Paluch 31 Reputation points
2021-01-19T18:07:12.817+00:00

![On query below , I can only see data from hours 3 up 8.. all data for other timeframes are missing. The data is being generated by Azure SQL log analytics configuration where I can't see anything missing. Any ideas? Thanks a lot!

1
58158-image.png

Azure Data Explorer
Azure Data Explorer
An Azure data analytics service for real-time analysis on large volumes of data streaming from sources including applications, websites, and internet of things devices.
502 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Vinny Paluch 31 Reputation points
    2021-02-03T16:14:37.52+00:00

    According to Microsoft Support, data is being truncated as we reach the daily cap limit for the free tier.
    They suggest we move to a “Pay as you go” tier, to be able to collect data and report on it.

    The following Kusto query is able to show if data collection is being truncated.

    Operation
    | where TimeGenerated > ago(1d)
    | where OperationCategory == "Data Collection Status" and OperationStatus == "Warning"
    | project Detail, TimeGenerated

    63585-u2.png

    1 person found this answer helpful.
    0 comments No comments