An Azure backup service that provides built-in management at scale.
Hello Thanvanth Sai Pasupuleti,
Thank you for posting your query on Microsoft Q&A platform.
1. Identifying which backup items contribute to the 211.77 TB
There is currently no way to get a per-item storage breakdown from the vault Overview blade, PowerShell, CLI, or the REST API. The vault-level usages API returns the same aggregate number you're already seeing, and backupUsageSummaries returns only item counts by workload type, not storage.
Reference: Backup Usage Summaries – List.
The supported way to get this breakdown is Backup Reports. The Backup Items tab shows cloud storage consumed at the individual backup-item level and this explicitly covers SQL in Azure VM, so you'll see consumption per SQL database. The Usage tab gives the same view rolled up to the protected VM (billing entity) level.
Reference: View reports for Azure Backup.
I know you mentioned Log Analytics isn't configured, that's the one blocker to resolving this, so I'd suggest setting it up as the first step.
Configure diagnostic settings on the vault to send data to a Log Analytics workspace, choosing Resource specific as the destination table type: Configure Azure Backup reports.
Data begins flowing within about 24 hours, and you don't have to wait for the workbook, you can query CoreAzureBackup directly for BackupItemFrontEndSize, BackupItemProtectionState, PolicyName, and OldestRecoveryPointTime
(CoreAzureBackup table reference).
2. Yes, retained and soft-deleted data does contribute, and this is the most likely explanation
Two documented behaviours are worth checking, because both cause exactly the pattern you're describing:
- If Stop backup → Retain backup data was ever used on an item, the retention range in the policy no longer applies to that data. Per the documentation, "it continues the pricing as is until you remove the data manually" Soft delete for virtual machines.
- While an item is in soft-deleted state, "no recovery points are cleaned on their expiry as per the backup policy." Soft delete is now enforced by default, with a retention window of 14–180 days Configure and manage soft delete.
It's also worth keeping in mind how storage is actually accounted for: consumed storage is the sum of all blocks across all recovery points, not the size of the most recent one. Blocks are only released once every recovery point referencing them expires https://learn.microsoft.com/en-us/azure/backup/manage-recovery-points.
With your policy weekly full, daily differential, and transaction log backups every 15 minutes across 77 databases the accumulated recovery point chain, not the 12 TB source footprint, is what determines the total. That is also the most probable reason your other vaults report much lower numbers despite a similar item count: the difference is usually in retention duration rather than protected size.
3. Steps to try before opening a support case
- Enable diagnostic settings → Log Analytics on the vault and open Backup Reports → Backup Items.
- In that tab, filter by the Protection Stopped state — this immediately surfaces any retained items that no longer show up as active.
- Check the vault's backup items list for soft-deleted entries (shown in red, with no recovery points).
- Compare the full/differential/log retention days in this vault's policies against the vaults reporting lower storage and confirm SQL compression is enabled on the policy.
- Review
OldestRecoveryPointTimeper item. Any recovery point significantly older than the configured retention is a strong indicator of data that isn't being pruned. - If index rebuild or reorganize jobs run on these databases, review their frequency — they generate large volumes of transaction log data, which directly inflates 15-minute log backup sizes.
If, after enabling reports, the sum of per-item storage still comes out materially below 211.77 TB, that would point to a genuine accounting discrepancy on the backend, and at that stage a support case with the report export and the vault resource ID would be the right next step.
Hope this help, happy to assist further if anything is unclear.
Thanks,
Suchitra.