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