How to export list of app backups for Web App?

Syed Harith Zaki 65 Reputation points
2024-07-09T03:43:13.4633333+00:00

How can I export app backups for web apps under App Service? There is no built-in export function on the page (can be seen below). Is there a way to use KQL query in Azure Monitor Logs to produce this list of previous backups as well? If yes, which table should I query the results from?

User's image

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,776 questions
{count} vote

Accepted answer
  1. SnehaAgrawal-MSFT 21,586 Reputation points
    2024-07-23T13:46:36.96+00:00

    @Syed Harith Zaki Recommended method for getting automatic backup list

    Get-AzWebAppSnapshot (Az.Websites) | Microsoft Learn.

    Get-AzWebAppSnapshot -ResourceGroupName "Default-Web-WestUS" -Name "ContosoApp" -Slot "Staging"
    
    
    

    Let us know if issue remains.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.