├── .github ├── CODEOWNERS └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Docs ├── Packs │ ├── IaaS │ │ ├── ADDS.md │ │ ├── DNS2016.md │ │ ├── IIS.md │ │ ├── IIS2016.md │ │ ├── Nginx.md │ │ ├── PS2016.md │ │ └── VMInsights.md │ ├── PaaS │ │ ├── AVD.md │ │ ├── KeyVault.md │ │ ├── LogicApps.md │ │ ├── OpenAI.md │ │ ├── SQLMI.md │ │ ├── Storage.md │ │ ├── WebApp.md │ │ ├── _index.md │ │ └── server.md │ └── Platform │ │ ├── AA.md │ │ ├── AppGW.md │ │ ├── AzFD.md │ │ ├── AzFW.md │ │ ├── KeyVault.md │ │ ├── LoadBalancers.md │ │ ├── NSG.md │ │ ├── PIP.md │ │ ├── PrivZones.md │ │ ├── _index.md │ │ └── vWan.md ├── README.md ├── SamplePack.json ├── authoring.md ├── image-18.png ├── image-19.png ├── image-20.png ├── media │ ├── image-1.png │ ├── image.png │ └── imageconfig.png └── solution-anatomy.md ├── LICENSE ├── Packs ├── ADDS │ └── client │ │ ├── adcollect.ps1 │ │ ├── addscollectiontask.xml │ │ └── install.ps1 ├── AMGD │ ├── amgd.zip │ ├── grafana-adds.json │ ├── grafana-dns.json │ ├── grafana-iis.json │ ├── grafana-lxos.json │ ├── grafana-nginx.json │ └── grafana-winos.json ├── Grafana.zip ├── PacksDef.json ├── PacksDef.zip ├── README.md ├── amba-alerts.json ├── amba-alerts.zip ├── applications │ ├── ADDS.zip │ └── applications.zip └── dashboards │ ├── Grafana.zip │ ├── grafana-dns.json │ ├── grafana-iis2016.json │ ├── grafana-lxos.json │ ├── grafana-nginx.json │ └── grafana-winos.json ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── misc ├── AMAPolicy │ ├── amapolicies.bicep │ ├── amapoliciesmg.bicep │ └── amapoliciesmg.json ├── ImageGallery │ ├── stub.zip │ └── uploadDSAD.bicep ├── PaaS │ ├── AVD │ │ ├── AVDHostPoolMapAlerts.ps1 │ │ ├── LogAlertsHostPool.json │ │ ├── alerts.bicep │ │ ├── dsAVDHostMapping.bicep │ │ ├── dsAVDHostMapping.json │ │ ├── info.json │ │ └── monitoring.bicep │ ├── AllPaaSPacks.bicep │ ├── LogicApps │ │ ├── alerts.bicep │ │ ├── alerts_old.bicep │ │ └── info.json │ ├── OpenAI │ │ ├── Alerts.bicep │ │ ├── info.json │ │ ├── monitoring.bicep │ │ └── monitoring.json │ ├── PaaS │ │ ├── LogAlert.bicep │ │ ├── activityLogAlert.bicep │ │ ├── metricAlertDynamic.bicep │ │ └── metricAlertStaticThreshold.bicep │ ├── SQL │ │ ├── SQLMI │ │ │ ├── alerts.bicep │ │ │ └── info.json │ │ └── server │ │ │ ├── alerts.bicep │ │ │ └── info.json │ ├── Storage │ │ ├── alerts.bicep │ │ ├── info.json │ │ └── monitoring.bicep │ ├── WebApp │ │ ├── alerts.bicep │ │ ├── info.json │ │ └── monitoring.bicep │ └── _index.md ├── Platform │ ├── AA │ │ ├── alerts.bicep │ │ └── info.json │ ├── AllPlatformPacks.bicep │ ├── AllPlatformPacks.json │ ├── KeyVault │ │ ├── alerts.bicep │ │ ├── info.json │ │ ├── monitoring.bicep │ │ └── monitoring.json │ ├── LogAnalyticsWorkspaces │ │ └── info.json │ └── Network │ │ ├── AppGW │ │ ├── alerts.bicep │ │ └── info.json │ │ ├── AzFD │ │ ├── alerts.bicep │ │ └── info.json │ │ ├── AzFW │ │ ├── alerts.bicep │ │ └── info.json │ │ ├── LoadBalancers │ │ ├── alerts.bicep │ │ ├── info.json │ │ ├── monitoring.bicep │ │ └── monitoring.json │ │ ├── NSG │ │ ├── alerts.bicep │ │ └── info.json │ │ ├── PIP │ │ ├── alerts.bicep │ │ └── info.json │ │ ├── PrivZones │ │ ├── alerts.bicep │ │ └── info.json │ │ └── vWan │ │ ├── alerts.bicep │ │ ├── info.json │ │ ├── monitoring.bicep │ │ └── monitoring.json ├── alz │ ├── deploy.bicep │ ├── readme.md │ └── version.json ├── ds.bicep ├── packs │ ├── AllPacks.bicep │ ├── AllPacks.json │ ├── CustomSetup │ │ └── setup.json │ ├── IaaS │ │ ├── ADDS │ │ │ ├── alerts.bicep │ │ │ ├── client.bicep │ │ │ ├── monitoring.bicep │ │ │ └── uploadDSADDS.bicep │ │ ├── AllIaaSPacks.bicep │ │ ├── AllIaaSPacks.json │ │ ├── DNS2016 │ │ │ ├── alerts.bicep │ │ │ ├── grafana-dns.json │ │ │ ├── monitoring.bicep │ │ │ └── monitoring.json │ │ ├── IIS │ │ │ ├── alerts.bicep │ │ │ ├── grafana-iis.json │ │ │ └── monitoring.bicep │ │ ├── IIS2016 │ │ │ ├── alerts.bicep │ │ │ ├── grafana-iis2016.json │ │ │ └── monitoring.bicep │ │ ├── Nginx │ │ │ ├── alerts.bicep │ │ │ ├── grafana-nginx.json │ │ │ └── monitoring.bicep │ │ ├── PS2016 │ │ │ ├── alerts.bicep │ │ │ ├── monitoring.bicep │ │ │ └── monitoring.json │ │ ├── VMInsights │ │ │ ├── VMInsightsAlerts_arg.bicep │ │ │ ├── alerts copy.bicep │ │ │ ├── alerts.bicep │ │ │ ├── grafana-lxos.json │ │ │ ├── grafana-winos.json │ │ │ ├── monitoring.bicep │ │ │ └── vmbasic.md │ │ ├── VMInsightswithDependency │ │ │ ├── alerts.bicep │ │ │ └── monitoring.bicep │ │ └── iaas-alerts.json │ ├── LxOS │ │ ├── alerts copy.bicep │ │ ├── alerts.bicep │ │ ├── eventAlerts.bicep.old │ │ ├── monitoring.bicep │ │ ├── monitoring.json │ │ └── vmbasic.md │ ├── WSFC2016 │ │ ├── alerts.bicep │ │ └── monitoring.bicep │ ├── WinOS │ │ ├── Azure Monitor Start Pack - Windows Operating System-1692086853589.json │ │ ├── AzureBasicMetricAlerts.bicep │ │ ├── VMInsightsAlerts_arg.bicep │ │ ├── alerts.bicep │ │ ├── eventAlerts.bicep.old │ │ ├── monitoring.bicep │ │ ├── monitoring.json │ │ └── vmbasic.md │ └── _index.md ├── policies │ ├── amaPolicySet.bicep │ ├── mg │ │ ├── assignment.bicep │ │ ├── associacionpolicyARC.bicep │ │ ├── associacionpolicyVM.bicep │ │ ├── diagnostics │ │ │ ├── associacionpolicyDiag.bicep │ │ │ └── associacionpolicyDiagAVD.bicep │ │ ├── policies.bicep │ │ ├── policiesDiag.bicep │ │ ├── policySet.bicep │ │ └── policySetGeneric.bicep │ ├── policydefinition.bicep │ └── subscription │ │ ├── assignment.bicep │ │ ├── associacionpolicyARC.bicep │ │ ├── associacionpolicyVM.bicep │ │ ├── policies.bicep │ │ └── policySet.bicep ├── policyCompliance │ ├── function.json │ └── run.ps1 └── policymgmt │ ├── function.json │ └── run.ps1 ├── modules ├── DCRs │ ├── DefaultVMI-rule.bicep │ ├── ServiceMap.bicep │ ├── association.bicep │ ├── collectionrule.bicep │ ├── customDataDCR.bicep │ ├── dataCollectionEndpoint.bicep │ ├── dcr-AVD.bicep │ ├── dcr-basicLinuxVM.bicep │ ├── dcr-basicWinVM.bicep │ ├── dcrassociation.bicep │ ├── dcrassociationARC.bicep │ ├── discoveryDCR.bicep │ ├── filecollectionSyslogLinux.bicep │ └── filecollectionWinIIS.bicep ├── LAW │ ├── Queries.txt │ ├── law.bicep │ ├── resultstable.bicep │ ├── table.bicep │ ├── table.json │ ├── table2.bicep │ └── workbooks │ │ ├── mainWB.bicep │ │ ├── mainWB.workbook │ │ └── workbook.bicep ├── actiongroups │ ├── ag.bicep │ └── emailactiongroup.bicep ├── alerts │ ├── alert.bicep │ ├── alerts.bicep │ ├── alerts.json │ ├── scheduledqueryruleAggregate.bicep │ ├── scheduledqueryruleRows.bicep │ └── vmmetricalert.bicep ├── ama │ ├── ama.bicep │ ├── amaLinux.bicep │ ├── amaLinuxArc.bicep │ ├── amaWindows.bicep │ └── amaWindowsArc.bicep ├── diagnosticssettings │ ├── storage.bicep │ └── vmbasic │ │ ├── virtualMachineName_MetricsAlert.bicep │ │ ├── vmwithalertsNetwork.bicep │ │ └── vmwithalertsbasic.bicep ├── discovery │ ├── aigapp.bicep │ ├── aigappversion.bicep │ ├── assignment.bicep │ ├── discoveryrule.bicep │ ├── policies.bicep │ ├── sub │ │ ├── assignment.bicep │ │ └── associacionpolicyVM.bicep │ └── uploadDS.bicep ├── modules.zip ├── rbac │ ├── mg │ │ └── roleassignment.bicep │ ├── resourceGroup │ │ └── roleassignment.bicep │ ├── resources │ │ └── rbacstorageaccount.bicep │ └── subscription │ │ ├── remediationContributor.bicep │ │ └── roleassignment.bicep └── workbooks │ ├── mainDashboard.json │ └── workbook.bicep ├── setup ├── backend │ ├── Function │ │ └── code │ │ │ ├── Modules │ │ │ ├── common │ │ │ │ └── common.psm1 │ │ │ ├── discovery │ │ │ │ └── discovery.psm1 │ │ │ ├── gallerypacks │ │ │ │ └── gallerypacks.psm1 │ │ │ └── grafana │ │ │ │ └── grafana.psm1 │ │ │ ├── README.md │ │ │ ├── agentMgmt │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ │ ├── alertConfigMgmt │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ │ ├── config │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ ├── opstasks │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ │ ├── opstasksondemand │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ │ ├── packmgmt │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ │ ├── profile.ps1 │ │ │ ├── requirements.psd1 │ │ │ └── runDiscovery │ │ │ ├── function.json │ │ │ └── run.ps1 │ ├── backend.zip │ └── bicep │ │ ├── backend.bicep │ │ ├── modules │ │ ├── aig.bicep │ │ ├── appsettings.bicep │ │ ├── extendedwb.json │ │ ├── extendedworkbook.bicep │ │ ├── function.bicep │ │ ├── grafana.bicep │ │ ├── keyvault.bicep │ │ ├── logicapp.bicep │ │ ├── mg │ │ │ ├── resourceGroup.bicep │ │ │ ├── storageAccount.bicep │ │ │ ├── storageAccountBlobs.bicep │ │ │ └── userManagedIdentity.bicep │ │ ├── opsdcr.bicep │ │ ├── opstables.bicep │ │ ├── umidentityresource.bicep │ │ ├── uploadAmbaAlerts.bicep │ │ ├── uploadAmbaAlerts.parameters.json │ │ ├── uploadModules.bicep │ │ ├── uploadPackDef.bicep │ │ ├── uploadamgd.bicep │ │ ├── uploadapplications.bicep │ │ └── userManagedIdentity.bicep │ │ ├── nested_telemetry.bicep │ │ └── telemetry.json ├── discovery │ ├── Linux │ │ ├── client │ │ │ ├── crontab │ │ │ ├── discovery.sh │ │ │ ├── install.sh │ │ │ └── uninstall.sh │ │ ├── discover.tar │ │ ├── discovery.bicep │ │ └── uploadDSLinux.bicep │ ├── README.md │ ├── Windows │ │ ├── client │ │ │ ├── DiscoveryTask.xml │ │ │ ├── discover.ps1 │ │ │ └── install.ps1 │ │ ├── discover.zip │ │ ├── discovery.bicep │ │ └── uploadDSWindows.bicep │ ├── discovery.bicep │ ├── discovery.parameters.json │ └── image.png ├── monstar.bicep ├── monstar.json └── setup.json └── tools ├── build.json ├── build.ps1 ├── delete-old-deployments.ps1 ├── generate-alertsPaaSdoc.ps1 ├── generate-alertsdoc.ps1 ├── prep-workbook.ps1 ├── readmetest.md ├── remove-empty-role-assignments.ps1 └── removeGallery.ps1 /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @josefehse @sdolgin @vanessabruwer 2 | 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/ADDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/ADDS.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/DNS2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/DNS2016.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/IIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/IIS.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/IIS2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/IIS2016.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/Nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/Nginx.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/PS2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/PS2016.md -------------------------------------------------------------------------------- /Docs/Packs/IaaS/VMInsights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/IaaS/VMInsights.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/AVD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/AVD.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/KeyVault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/KeyVault.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/LogicApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/LogicApps.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/OpenAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/OpenAI.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/SQLMI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/SQLMI.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/Storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/Storage.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/WebApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/WebApp.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/_index.md -------------------------------------------------------------------------------- /Docs/Packs/PaaS/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/PaaS/server.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/AA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/AA.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/AppGW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/AppGW.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/AzFD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/AzFD.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/AzFW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/AzFW.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/KeyVault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/KeyVault.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/LoadBalancers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/LoadBalancers.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/NSG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/NSG.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/PIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/PIP.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/PrivZones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/PrivZones.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/_index.md -------------------------------------------------------------------------------- /Docs/Packs/Platform/vWan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/Packs/Platform/vWan.md -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/README.md -------------------------------------------------------------------------------- /Docs/SamplePack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/SamplePack.json -------------------------------------------------------------------------------- /Docs/authoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/authoring.md -------------------------------------------------------------------------------- /Docs/image-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/image-18.png -------------------------------------------------------------------------------- /Docs/image-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/image-19.png -------------------------------------------------------------------------------- /Docs/image-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/image-20.png -------------------------------------------------------------------------------- /Docs/media/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/media/image-1.png -------------------------------------------------------------------------------- /Docs/media/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/media/image.png -------------------------------------------------------------------------------- /Docs/media/imageconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/media/imageconfig.png -------------------------------------------------------------------------------- /Docs/solution-anatomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Docs/solution-anatomy.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/LICENSE -------------------------------------------------------------------------------- /Packs/ADDS/client/adcollect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/ADDS/client/adcollect.ps1 -------------------------------------------------------------------------------- /Packs/ADDS/client/addscollectiontask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/ADDS/client/addscollectiontask.xml -------------------------------------------------------------------------------- /Packs/ADDS/client/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/ADDS/client/install.ps1 -------------------------------------------------------------------------------- /Packs/AMGD/amgd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/amgd.zip -------------------------------------------------------------------------------- /Packs/AMGD/grafana-adds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/grafana-adds.json -------------------------------------------------------------------------------- /Packs/AMGD/grafana-dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/grafana-dns.json -------------------------------------------------------------------------------- /Packs/AMGD/grafana-iis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/grafana-iis.json -------------------------------------------------------------------------------- /Packs/AMGD/grafana-lxos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/grafana-lxos.json -------------------------------------------------------------------------------- /Packs/AMGD/grafana-nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/grafana-nginx.json -------------------------------------------------------------------------------- /Packs/AMGD/grafana-winos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/AMGD/grafana-winos.json -------------------------------------------------------------------------------- /Packs/Grafana.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/Grafana.zip -------------------------------------------------------------------------------- /Packs/PacksDef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/PacksDef.json -------------------------------------------------------------------------------- /Packs/PacksDef.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/PacksDef.zip -------------------------------------------------------------------------------- /Packs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/README.md -------------------------------------------------------------------------------- /Packs/amba-alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/amba-alerts.json -------------------------------------------------------------------------------- /Packs/amba-alerts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/amba-alerts.zip -------------------------------------------------------------------------------- /Packs/applications/ADDS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/applications/ADDS.zip -------------------------------------------------------------------------------- /Packs/applications/applications.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/applications/applications.zip -------------------------------------------------------------------------------- /Packs/dashboards/Grafana.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/dashboards/Grafana.zip -------------------------------------------------------------------------------- /Packs/dashboards/grafana-dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/dashboards/grafana-dns.json -------------------------------------------------------------------------------- /Packs/dashboards/grafana-iis2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/dashboards/grafana-iis2016.json -------------------------------------------------------------------------------- /Packs/dashboards/grafana-lxos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/dashboards/grafana-lxos.json -------------------------------------------------------------------------------- /Packs/dashboards/grafana-nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/dashboards/grafana-nginx.json -------------------------------------------------------------------------------- /Packs/dashboards/grafana-winos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/Packs/dashboards/grafana-winos.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /misc/AMAPolicy/amapolicies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/AMAPolicy/amapolicies.bicep -------------------------------------------------------------------------------- /misc/AMAPolicy/amapoliciesmg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/AMAPolicy/amapoliciesmg.bicep -------------------------------------------------------------------------------- /misc/AMAPolicy/amapoliciesmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/AMAPolicy/amapoliciesmg.json -------------------------------------------------------------------------------- /misc/ImageGallery/stub.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/ImageGallery/uploadDSAD.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/ImageGallery/uploadDSAD.bicep -------------------------------------------------------------------------------- /misc/PaaS/AVD/AVDHostPoolMapAlerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/AVDHostPoolMapAlerts.ps1 -------------------------------------------------------------------------------- /misc/PaaS/AVD/LogAlertsHostPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/LogAlertsHostPool.json -------------------------------------------------------------------------------- /misc/PaaS/AVD/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/AVD/dsAVDHostMapping.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/dsAVDHostMapping.bicep -------------------------------------------------------------------------------- /misc/PaaS/AVD/dsAVDHostMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/dsAVDHostMapping.json -------------------------------------------------------------------------------- /misc/PaaS/AVD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/info.json -------------------------------------------------------------------------------- /misc/PaaS/AVD/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AVD/monitoring.bicep -------------------------------------------------------------------------------- /misc/PaaS/AllPaaSPacks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/AllPaaSPacks.bicep -------------------------------------------------------------------------------- /misc/PaaS/LogicApps/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/LogicApps/alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/LogicApps/alerts_old.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/LogicApps/alerts_old.bicep -------------------------------------------------------------------------------- /misc/PaaS/LogicApps/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/LogicApps/info.json -------------------------------------------------------------------------------- /misc/PaaS/OpenAI/Alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/OpenAI/Alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/OpenAI/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/OpenAI/info.json -------------------------------------------------------------------------------- /misc/PaaS/OpenAI/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/OpenAI/monitoring.bicep -------------------------------------------------------------------------------- /misc/PaaS/OpenAI/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/OpenAI/monitoring.json -------------------------------------------------------------------------------- /misc/PaaS/PaaS/LogAlert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/PaaS/LogAlert.bicep -------------------------------------------------------------------------------- /misc/PaaS/PaaS/activityLogAlert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/PaaS/activityLogAlert.bicep -------------------------------------------------------------------------------- /misc/PaaS/PaaS/metricAlertDynamic.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/PaaS/metricAlertDynamic.bicep -------------------------------------------------------------------------------- /misc/PaaS/PaaS/metricAlertStaticThreshold.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/PaaS/metricAlertStaticThreshold.bicep -------------------------------------------------------------------------------- /misc/PaaS/SQL/SQLMI/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/SQL/SQLMI/alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/SQL/SQLMI/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/SQL/SQLMI/info.json -------------------------------------------------------------------------------- /misc/PaaS/SQL/server/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/SQL/server/alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/SQL/server/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/SQL/server/info.json -------------------------------------------------------------------------------- /misc/PaaS/Storage/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/Storage/alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/Storage/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/Storage/info.json -------------------------------------------------------------------------------- /misc/PaaS/Storage/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/Storage/monitoring.bicep -------------------------------------------------------------------------------- /misc/PaaS/WebApp/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/WebApp/alerts.bicep -------------------------------------------------------------------------------- /misc/PaaS/WebApp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/WebApp/info.json -------------------------------------------------------------------------------- /misc/PaaS/WebApp/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/WebApp/monitoring.bicep -------------------------------------------------------------------------------- /misc/PaaS/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/PaaS/_index.md -------------------------------------------------------------------------------- /misc/Platform/AA/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/AA/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/AA/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/AA/info.json -------------------------------------------------------------------------------- /misc/Platform/AllPlatformPacks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/AllPlatformPacks.bicep -------------------------------------------------------------------------------- /misc/Platform/AllPlatformPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/AllPlatformPacks.json -------------------------------------------------------------------------------- /misc/Platform/KeyVault/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/KeyVault/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/KeyVault/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/KeyVault/info.json -------------------------------------------------------------------------------- /misc/Platform/KeyVault/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/KeyVault/monitoring.bicep -------------------------------------------------------------------------------- /misc/Platform/KeyVault/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/KeyVault/monitoring.json -------------------------------------------------------------------------------- /misc/Platform/LogAnalyticsWorkspaces/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/LogAnalyticsWorkspaces/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/AppGW/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/AppGW/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/AppGW/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/AppGW/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/AzFD/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/AzFD/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/AzFD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/AzFD/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/AzFW/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/AzFW/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/AzFW/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/AzFW/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/LoadBalancers/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/LoadBalancers/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/LoadBalancers/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/LoadBalancers/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/LoadBalancers/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/LoadBalancers/monitoring.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/LoadBalancers/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/LoadBalancers/monitoring.json -------------------------------------------------------------------------------- /misc/Platform/Network/NSG/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/NSG/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/NSG/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/NSG/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/PIP/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/PIP/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/PIP/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/PIP/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/PrivZones/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/PrivZones/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/PrivZones/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/PrivZones/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/vWan/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/vWan/alerts.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/vWan/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/vWan/info.json -------------------------------------------------------------------------------- /misc/Platform/Network/vWan/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/vWan/monitoring.bicep -------------------------------------------------------------------------------- /misc/Platform/Network/vWan/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/Platform/Network/vWan/monitoring.json -------------------------------------------------------------------------------- /misc/alz/deploy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/alz/deploy.bicep -------------------------------------------------------------------------------- /misc/alz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/alz/readme.md -------------------------------------------------------------------------------- /misc/alz/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/alz/version.json -------------------------------------------------------------------------------- /misc/ds.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/ds.bicep -------------------------------------------------------------------------------- /misc/packs/AllPacks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/AllPacks.bicep -------------------------------------------------------------------------------- /misc/packs/AllPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/AllPacks.json -------------------------------------------------------------------------------- /misc/packs/CustomSetup/setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/CustomSetup/setup.json -------------------------------------------------------------------------------- /misc/packs/IaaS/ADDS/alerts.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/packs/IaaS/ADDS/client.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/ADDS/client.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/ADDS/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/ADDS/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/ADDS/uploadDSADDS.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/ADDS/uploadDSADDS.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/AllIaaSPacks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/AllIaaSPacks.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/AllIaaSPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/AllIaaSPacks.json -------------------------------------------------------------------------------- /misc/packs/IaaS/DNS2016/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/DNS2016/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/DNS2016/grafana-dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/DNS2016/grafana-dns.json -------------------------------------------------------------------------------- /misc/packs/IaaS/DNS2016/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/DNS2016/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/DNS2016/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/DNS2016/monitoring.json -------------------------------------------------------------------------------- /misc/packs/IaaS/IIS/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/IIS/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/IIS/grafana-iis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/IIS/grafana-iis.json -------------------------------------------------------------------------------- /misc/packs/IaaS/IIS/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/IIS/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/IIS2016/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/IIS2016/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/IIS2016/grafana-iis2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/IIS2016/grafana-iis2016.json -------------------------------------------------------------------------------- /misc/packs/IaaS/IIS2016/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/IIS2016/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/Nginx/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/Nginx/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/Nginx/grafana-nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/Nginx/grafana-nginx.json -------------------------------------------------------------------------------- /misc/packs/IaaS/Nginx/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/Nginx/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/PS2016/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/PS2016/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/PS2016/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/PS2016/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/PS2016/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/PS2016/monitoring.json -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/VMInsightsAlerts_arg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/VMInsightsAlerts_arg.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/alerts copy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/alerts copy.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/grafana-lxos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/grafana-lxos.json -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/grafana-winos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/grafana-winos.json -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsights/vmbasic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsights/vmbasic.md -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsightswithDependency/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsightswithDependency/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/VMInsightswithDependency/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/VMInsightswithDependency/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/IaaS/iaas-alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/IaaS/iaas-alerts.json -------------------------------------------------------------------------------- /misc/packs/LxOS/alerts copy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/LxOS/alerts copy.bicep -------------------------------------------------------------------------------- /misc/packs/LxOS/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/LxOS/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/LxOS/eventAlerts.bicep.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/LxOS/eventAlerts.bicep.old -------------------------------------------------------------------------------- /misc/packs/LxOS/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/LxOS/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/LxOS/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/LxOS/monitoring.json -------------------------------------------------------------------------------- /misc/packs/LxOS/vmbasic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/LxOS/vmbasic.md -------------------------------------------------------------------------------- /misc/packs/WSFC2016/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WSFC2016/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/WSFC2016/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WSFC2016/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/WinOS/Azure Monitor Start Pack - Windows Operating System-1692086853589.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/Azure Monitor Start Pack - Windows Operating System-1692086853589.json -------------------------------------------------------------------------------- /misc/packs/WinOS/AzureBasicMetricAlerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/AzureBasicMetricAlerts.bicep -------------------------------------------------------------------------------- /misc/packs/WinOS/VMInsightsAlerts_arg.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/VMInsightsAlerts_arg.bicep -------------------------------------------------------------------------------- /misc/packs/WinOS/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/alerts.bicep -------------------------------------------------------------------------------- /misc/packs/WinOS/eventAlerts.bicep.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/eventAlerts.bicep.old -------------------------------------------------------------------------------- /misc/packs/WinOS/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/monitoring.bicep -------------------------------------------------------------------------------- /misc/packs/WinOS/monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/monitoring.json -------------------------------------------------------------------------------- /misc/packs/WinOS/vmbasic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/WinOS/vmbasic.md -------------------------------------------------------------------------------- /misc/packs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/packs/_index.md -------------------------------------------------------------------------------- /misc/policies/amaPolicySet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/amaPolicySet.bicep -------------------------------------------------------------------------------- /misc/policies/mg/assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/assignment.bicep -------------------------------------------------------------------------------- /misc/policies/mg/associacionpolicyARC.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/associacionpolicyARC.bicep -------------------------------------------------------------------------------- /misc/policies/mg/associacionpolicyVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/associacionpolicyVM.bicep -------------------------------------------------------------------------------- /misc/policies/mg/diagnostics/associacionpolicyDiag.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/diagnostics/associacionpolicyDiag.bicep -------------------------------------------------------------------------------- /misc/policies/mg/diagnostics/associacionpolicyDiagAVD.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/diagnostics/associacionpolicyDiagAVD.bicep -------------------------------------------------------------------------------- /misc/policies/mg/policies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/policies.bicep -------------------------------------------------------------------------------- /misc/policies/mg/policiesDiag.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/policiesDiag.bicep -------------------------------------------------------------------------------- /misc/policies/mg/policySet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/policySet.bicep -------------------------------------------------------------------------------- /misc/policies/mg/policySetGeneric.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/mg/policySetGeneric.bicep -------------------------------------------------------------------------------- /misc/policies/policydefinition.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/policydefinition.bicep -------------------------------------------------------------------------------- /misc/policies/subscription/assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/subscription/assignment.bicep -------------------------------------------------------------------------------- /misc/policies/subscription/associacionpolicyARC.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/subscription/associacionpolicyARC.bicep -------------------------------------------------------------------------------- /misc/policies/subscription/associacionpolicyVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/subscription/associacionpolicyVM.bicep -------------------------------------------------------------------------------- /misc/policies/subscription/policies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/subscription/policies.bicep -------------------------------------------------------------------------------- /misc/policies/subscription/policySet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policies/subscription/policySet.bicep -------------------------------------------------------------------------------- /misc/policyCompliance/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policyCompliance/function.json -------------------------------------------------------------------------------- /misc/policyCompliance/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policyCompliance/run.ps1 -------------------------------------------------------------------------------- /misc/policymgmt/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policymgmt/function.json -------------------------------------------------------------------------------- /misc/policymgmt/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/misc/policymgmt/run.ps1 -------------------------------------------------------------------------------- /modules/DCRs/DefaultVMI-rule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/DefaultVMI-rule.bicep -------------------------------------------------------------------------------- /modules/DCRs/ServiceMap.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/ServiceMap.bicep -------------------------------------------------------------------------------- /modules/DCRs/association.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/association.bicep -------------------------------------------------------------------------------- /modules/DCRs/collectionrule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/collectionrule.bicep -------------------------------------------------------------------------------- /modules/DCRs/customDataDCR.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/customDataDCR.bicep -------------------------------------------------------------------------------- /modules/DCRs/dataCollectionEndpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/dataCollectionEndpoint.bicep -------------------------------------------------------------------------------- /modules/DCRs/dcr-AVD.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/dcr-AVD.bicep -------------------------------------------------------------------------------- /modules/DCRs/dcr-basicLinuxVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/dcr-basicLinuxVM.bicep -------------------------------------------------------------------------------- /modules/DCRs/dcr-basicWinVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/dcr-basicWinVM.bicep -------------------------------------------------------------------------------- /modules/DCRs/dcrassociation.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/dcrassociation.bicep -------------------------------------------------------------------------------- /modules/DCRs/dcrassociationARC.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/dcrassociationARC.bicep -------------------------------------------------------------------------------- /modules/DCRs/discoveryDCR.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/discoveryDCR.bicep -------------------------------------------------------------------------------- /modules/DCRs/filecollectionSyslogLinux.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/filecollectionSyslogLinux.bicep -------------------------------------------------------------------------------- /modules/DCRs/filecollectionWinIIS.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/DCRs/filecollectionWinIIS.bicep -------------------------------------------------------------------------------- /modules/LAW/Queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/Queries.txt -------------------------------------------------------------------------------- /modules/LAW/law.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/law.bicep -------------------------------------------------------------------------------- /modules/LAW/resultstable.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/resultstable.bicep -------------------------------------------------------------------------------- /modules/LAW/table.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/table.bicep -------------------------------------------------------------------------------- /modules/LAW/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/table.json -------------------------------------------------------------------------------- /modules/LAW/table2.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/table2.bicep -------------------------------------------------------------------------------- /modules/LAW/workbooks/mainWB.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/workbooks/mainWB.bicep -------------------------------------------------------------------------------- /modules/LAW/workbooks/mainWB.workbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/workbooks/mainWB.workbook -------------------------------------------------------------------------------- /modules/LAW/workbooks/workbook.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/LAW/workbooks/workbook.bicep -------------------------------------------------------------------------------- /modules/actiongroups/ag.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/actiongroups/ag.bicep -------------------------------------------------------------------------------- /modules/actiongroups/emailactiongroup.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/actiongroups/emailactiongroup.bicep -------------------------------------------------------------------------------- /modules/alerts/alert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/alerts/alert.bicep -------------------------------------------------------------------------------- /modules/alerts/alerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/alerts/alerts.bicep -------------------------------------------------------------------------------- /modules/alerts/alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/alerts/alerts.json -------------------------------------------------------------------------------- /modules/alerts/scheduledqueryruleAggregate.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/alerts/scheduledqueryruleAggregate.bicep -------------------------------------------------------------------------------- /modules/alerts/scheduledqueryruleRows.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/alerts/scheduledqueryruleRows.bicep -------------------------------------------------------------------------------- /modules/alerts/vmmetricalert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/alerts/vmmetricalert.bicep -------------------------------------------------------------------------------- /modules/ama/ama.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/ama/ama.bicep -------------------------------------------------------------------------------- /modules/ama/amaLinux.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/ama/amaLinux.bicep -------------------------------------------------------------------------------- /modules/ama/amaLinuxArc.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/ama/amaLinuxArc.bicep -------------------------------------------------------------------------------- /modules/ama/amaWindows.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/ama/amaWindows.bicep -------------------------------------------------------------------------------- /modules/ama/amaWindowsArc.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/ama/amaWindowsArc.bicep -------------------------------------------------------------------------------- /modules/diagnosticssettings/storage.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/diagnosticssettings/storage.bicep -------------------------------------------------------------------------------- /modules/diagnosticssettings/vmbasic/virtualMachineName_MetricsAlert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/diagnosticssettings/vmbasic/virtualMachineName_MetricsAlert.bicep -------------------------------------------------------------------------------- /modules/diagnosticssettings/vmbasic/vmwithalertsNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/diagnosticssettings/vmbasic/vmwithalertsNetwork.bicep -------------------------------------------------------------------------------- /modules/diagnosticssettings/vmbasic/vmwithalertsbasic.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/diagnosticssettings/vmbasic/vmwithalertsbasic.bicep -------------------------------------------------------------------------------- /modules/discovery/aigapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/aigapp.bicep -------------------------------------------------------------------------------- /modules/discovery/aigappversion.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/aigappversion.bicep -------------------------------------------------------------------------------- /modules/discovery/assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/assignment.bicep -------------------------------------------------------------------------------- /modules/discovery/discoveryrule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/discoveryrule.bicep -------------------------------------------------------------------------------- /modules/discovery/policies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/policies.bicep -------------------------------------------------------------------------------- /modules/discovery/sub/assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/sub/assignment.bicep -------------------------------------------------------------------------------- /modules/discovery/sub/associacionpolicyVM.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/sub/associacionpolicyVM.bicep -------------------------------------------------------------------------------- /modules/discovery/uploadDS.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/discovery/uploadDS.bicep -------------------------------------------------------------------------------- /modules/modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/modules.zip -------------------------------------------------------------------------------- /modules/rbac/mg/roleassignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/rbac/mg/roleassignment.bicep -------------------------------------------------------------------------------- /modules/rbac/resourceGroup/roleassignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/rbac/resourceGroup/roleassignment.bicep -------------------------------------------------------------------------------- /modules/rbac/resources/rbacstorageaccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/rbac/resources/rbacstorageaccount.bicep -------------------------------------------------------------------------------- /modules/rbac/subscription/remediationContributor.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/rbac/subscription/remediationContributor.bicep -------------------------------------------------------------------------------- /modules/rbac/subscription/roleassignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/rbac/subscription/roleassignment.bicep -------------------------------------------------------------------------------- /modules/workbooks/mainDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/workbooks/mainDashboard.json -------------------------------------------------------------------------------- /modules/workbooks/workbook.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/modules/workbooks/workbook.bicep -------------------------------------------------------------------------------- /setup/backend/Function/code/Modules/common/common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/Modules/common/common.psm1 -------------------------------------------------------------------------------- /setup/backend/Function/code/Modules/discovery/discovery.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/Modules/discovery/discovery.psm1 -------------------------------------------------------------------------------- /setup/backend/Function/code/Modules/gallerypacks/gallerypacks.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/Modules/gallerypacks/gallerypacks.psm1 -------------------------------------------------------------------------------- /setup/backend/Function/code/Modules/grafana/grafana.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/Modules/grafana/grafana.psm1 -------------------------------------------------------------------------------- /setup/backend/Function/code/README.md: -------------------------------------------------------------------------------- 1 | # TBD -------------------------------------------------------------------------------- /setup/backend/Function/code/agentMgmt/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/agentMgmt/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/agentMgmt/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/agentMgmt/run.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/alertConfigMgmt/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/alertConfigMgmt/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/alertConfigMgmt/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/alertConfigMgmt/run.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/config/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/config/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/config/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/config/run.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/host.json -------------------------------------------------------------------------------- /setup/backend/Function/code/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/local.settings.json -------------------------------------------------------------------------------- /setup/backend/Function/code/opstasks/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/opstasks/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/opstasks/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/opstasks/run.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/opstasksondemand/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/opstasksondemand/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/opstasksondemand/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/opstasksondemand/run.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/packmgmt/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/packmgmt/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/packmgmt/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/packmgmt/run.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/profile.ps1 -------------------------------------------------------------------------------- /setup/backend/Function/code/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/requirements.psd1 -------------------------------------------------------------------------------- /setup/backend/Function/code/runDiscovery/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/runDiscovery/function.json -------------------------------------------------------------------------------- /setup/backend/Function/code/runDiscovery/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/Function/code/runDiscovery/run.ps1 -------------------------------------------------------------------------------- /setup/backend/backend.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/backend.zip -------------------------------------------------------------------------------- /setup/backend/bicep/backend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/backend.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/aig.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/aig.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/appsettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/appsettings.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/extendedwb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/extendedwb.json -------------------------------------------------------------------------------- /setup/backend/bicep/modules/extendedworkbook.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/extendedworkbook.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/function.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/function.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/grafana.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/grafana.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/keyvault.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/logicapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/logicapp.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/mg/resourceGroup.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/mg/resourceGroup.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/mg/storageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/mg/storageAccount.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/mg/storageAccountBlobs.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/mg/storageAccountBlobs.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/mg/userManagedIdentity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/mg/userManagedIdentity.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/opsdcr.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/opsdcr.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/opstables.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/opstables.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/umidentityresource.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/umidentityresource.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/uploadAmbaAlerts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/uploadAmbaAlerts.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/uploadAmbaAlerts.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/uploadAmbaAlerts.parameters.json -------------------------------------------------------------------------------- /setup/backend/bicep/modules/uploadModules.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/uploadModules.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/uploadPackDef.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/uploadPackDef.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/uploadamgd.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/uploadamgd.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/uploadapplications.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/uploadapplications.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/modules/userManagedIdentity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/modules/userManagedIdentity.bicep -------------------------------------------------------------------------------- /setup/backend/bicep/nested_telemetry.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/backend/bicep/telemetry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/backend/bicep/telemetry.json -------------------------------------------------------------------------------- /setup/discovery/Linux/client/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/client/crontab -------------------------------------------------------------------------------- /setup/discovery/Linux/client/discovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/client/discovery.sh -------------------------------------------------------------------------------- /setup/discovery/Linux/client/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/client/install.sh -------------------------------------------------------------------------------- /setup/discovery/Linux/client/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/client/uninstall.sh -------------------------------------------------------------------------------- /setup/discovery/Linux/discover.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/discover.tar -------------------------------------------------------------------------------- /setup/discovery/Linux/discovery.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/discovery.bicep -------------------------------------------------------------------------------- /setup/discovery/Linux/uploadDSLinux.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Linux/uploadDSLinux.bicep -------------------------------------------------------------------------------- /setup/discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/README.md -------------------------------------------------------------------------------- /setup/discovery/Windows/client/DiscoveryTask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Windows/client/DiscoveryTask.xml -------------------------------------------------------------------------------- /setup/discovery/Windows/client/discover.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Windows/client/discover.ps1 -------------------------------------------------------------------------------- /setup/discovery/Windows/client/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Windows/client/install.ps1 -------------------------------------------------------------------------------- /setup/discovery/Windows/discover.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Windows/discover.zip -------------------------------------------------------------------------------- /setup/discovery/Windows/discovery.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Windows/discovery.bicep -------------------------------------------------------------------------------- /setup/discovery/Windows/uploadDSWindows.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/Windows/uploadDSWindows.bicep -------------------------------------------------------------------------------- /setup/discovery/discovery.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/discovery.bicep -------------------------------------------------------------------------------- /setup/discovery/discovery.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/discovery.parameters.json -------------------------------------------------------------------------------- /setup/discovery/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/discovery/image.png -------------------------------------------------------------------------------- /setup/monstar.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/monstar.bicep -------------------------------------------------------------------------------- /setup/monstar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/monstar.json -------------------------------------------------------------------------------- /setup/setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/setup/setup.json -------------------------------------------------------------------------------- /tools/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/build.json -------------------------------------------------------------------------------- /tools/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/build.ps1 -------------------------------------------------------------------------------- /tools/delete-old-deployments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/delete-old-deployments.ps1 -------------------------------------------------------------------------------- /tools/generate-alertsPaaSdoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/generate-alertsPaaSdoc.ps1 -------------------------------------------------------------------------------- /tools/generate-alertsdoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/generate-alertsdoc.ps1 -------------------------------------------------------------------------------- /tools/prep-workbook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/prep-workbook.ps1 -------------------------------------------------------------------------------- /tools/readmetest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/readmetest.md -------------------------------------------------------------------------------- /tools/remove-empty-role-assignments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/remove-empty-role-assignments.ps1 -------------------------------------------------------------------------------- /tools/removeGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AzureMonitorStarterPacks/HEAD/tools/removeGallery.ps1 --------------------------------------------------------------------------------