├── .github └── workflows │ └── pull-request-build-test.yml ├── .gitignore ├── .pipelines └── pipeline.user.linux.all_buildtype.all_tag.Phase_1.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── conf ├── nginx.conf └── sources.list ├── docs ├── diskinfo.md ├── list_directory.md ├── manifest_by_file.md ├── manifest_content.md ├── readme.md ├── registry.md ├── tests.md └── tools.md ├── manifests ├── freebsd │ ├── agents │ ├── diagnostic │ ├── genspec │ ├── normal │ └── vmdiagnostic ├── linux │ ├── agents │ ├── aks │ ├── azuremonitoragent │ ├── crashdump │ ├── diagnostic │ ├── diskpool │ ├── eg │ ├── genspec │ ├── hdinsight │ ├── lad │ ├── linux-bootconfig │ ├── linux-repoconfig │ ├── linux-sos-scc │ ├── monitor-mgmt │ ├── normal │ ├── performance │ ├── servicefabric │ ├── site-recovery │ ├── sql-iaas │ ├── vmdiagnostic │ └── workloadbackup └── windows │ ├── agents │ ├── aks │ ├── asc-vmhealth │ ├── diagnostic │ ├── eg │ ├── genspec │ ├── min-diagnostic │ ├── monitor-mgmt │ ├── normal │ ├── rdp-registry │ ├── servicefabric │ ├── site-recovery │ ├── sql-iaas │ ├── vmdiagnostic │ ├── vmwindows-tss-ms_data │ ├── windowsupdate │ └── workloadbackup ├── tests └── requires_doc_change.sh └── tools └── parse_manifest.py /.github/workflows/pull-request-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/.github/workflows/pull-request-build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/pipeline.user.linux.all_buildtype.all_tag.Phase_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/.pipelines/pipeline.user.linux.all_buildtype.all_tag.Phase_1.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/SECURITY.md -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/conf/sources.list -------------------------------------------------------------------------------- /docs/diskinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/diskinfo.md -------------------------------------------------------------------------------- /docs/list_directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/list_directory.md -------------------------------------------------------------------------------- /docs/manifest_by_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/manifest_by_file.md -------------------------------------------------------------------------------- /docs/manifest_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/manifest_content.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/registry.md -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/tests.md -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/docs/tools.md -------------------------------------------------------------------------------- /manifests/freebsd/agents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/freebsd/agents -------------------------------------------------------------------------------- /manifests/freebsd/diagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/freebsd/diagnostic -------------------------------------------------------------------------------- /manifests/freebsd/genspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/freebsd/genspec -------------------------------------------------------------------------------- /manifests/freebsd/normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/freebsd/normal -------------------------------------------------------------------------------- /manifests/freebsd/vmdiagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/freebsd/vmdiagnostic -------------------------------------------------------------------------------- /manifests/linux/agents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/agents -------------------------------------------------------------------------------- /manifests/linux/aks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/aks -------------------------------------------------------------------------------- /manifests/linux/azuremonitoragent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/azuremonitoragent -------------------------------------------------------------------------------- /manifests/linux/crashdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/crashdump -------------------------------------------------------------------------------- /manifests/linux/diagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/diagnostic -------------------------------------------------------------------------------- /manifests/linux/diskpool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/diskpool -------------------------------------------------------------------------------- /manifests/linux/eg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/eg -------------------------------------------------------------------------------- /manifests/linux/genspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/genspec -------------------------------------------------------------------------------- /manifests/linux/hdinsight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/hdinsight -------------------------------------------------------------------------------- /manifests/linux/lad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/lad -------------------------------------------------------------------------------- /manifests/linux/linux-bootconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/linux-bootconfig -------------------------------------------------------------------------------- /manifests/linux/linux-repoconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/linux-repoconfig -------------------------------------------------------------------------------- /manifests/linux/linux-sos-scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/linux-sos-scc -------------------------------------------------------------------------------- /manifests/linux/monitor-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/monitor-mgmt -------------------------------------------------------------------------------- /manifests/linux/normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/normal -------------------------------------------------------------------------------- /manifests/linux/performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/performance -------------------------------------------------------------------------------- /manifests/linux/servicefabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/servicefabric -------------------------------------------------------------------------------- /manifests/linux/site-recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/site-recovery -------------------------------------------------------------------------------- /manifests/linux/sql-iaas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/sql-iaas -------------------------------------------------------------------------------- /manifests/linux/vmdiagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/vmdiagnostic -------------------------------------------------------------------------------- /manifests/linux/workloadbackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/linux/workloadbackup -------------------------------------------------------------------------------- /manifests/windows/agents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/agents -------------------------------------------------------------------------------- /manifests/windows/aks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/aks -------------------------------------------------------------------------------- /manifests/windows/asc-vmhealth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/asc-vmhealth -------------------------------------------------------------------------------- /manifests/windows/diagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/diagnostic -------------------------------------------------------------------------------- /manifests/windows/eg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/eg -------------------------------------------------------------------------------- /manifests/windows/genspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/genspec -------------------------------------------------------------------------------- /manifests/windows/min-diagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/min-diagnostic -------------------------------------------------------------------------------- /manifests/windows/monitor-mgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/monitor-mgmt -------------------------------------------------------------------------------- /manifests/windows/normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/normal -------------------------------------------------------------------------------- /manifests/windows/rdp-registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/rdp-registry -------------------------------------------------------------------------------- /manifests/windows/servicefabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/servicefabric -------------------------------------------------------------------------------- /manifests/windows/site-recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/site-recovery -------------------------------------------------------------------------------- /manifests/windows/sql-iaas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/sql-iaas -------------------------------------------------------------------------------- /manifests/windows/vmdiagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/vmdiagnostic -------------------------------------------------------------------------------- /manifests/windows/vmwindows-tss-ms_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/vmwindows-tss-ms_data -------------------------------------------------------------------------------- /manifests/windows/windowsupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/windowsupdate -------------------------------------------------------------------------------- /manifests/windows/workloadbackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/manifests/windows/workloadbackup -------------------------------------------------------------------------------- /tests/requires_doc_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/tests/requires_doc_change.sh -------------------------------------------------------------------------------- /tools/parse_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-diskinspect-service/HEAD/tools/parse_manifest.py --------------------------------------------------------------------------------