├── .DS_Store ├── .gitignore ├── .images ├── DefenderArchiveR.png ├── example1.png ├── example2_1.png ├── example2_2.png ├── example2_3.png ├── files.png └── streamingapi.png ├── CalculateTableSizing.ps1 ├── DefenderArchiveR.ps1 ├── README.md ├── adxScript.kusto └── arm-templates ├── .DS_Store ├── dataexplorer.template.json ├── eventhub.template.json └── workspacefunctions.template.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | run.ps1 2 | .vscode/settings.json 3 | -------------------------------------------------------------------------------- /.images/DefenderArchiveR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/DefenderArchiveR.png -------------------------------------------------------------------------------- /.images/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/example1.png -------------------------------------------------------------------------------- /.images/example2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/example2_1.png -------------------------------------------------------------------------------- /.images/example2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/example2_2.png -------------------------------------------------------------------------------- /.images/example2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/example2_3.png -------------------------------------------------------------------------------- /.images/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/files.png -------------------------------------------------------------------------------- /.images/streamingapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/.images/streamingapi.png -------------------------------------------------------------------------------- /CalculateTableSizing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/CalculateTableSizing.ps1 -------------------------------------------------------------------------------- /DefenderArchiveR.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/DefenderArchiveR.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/README.md -------------------------------------------------------------------------------- /adxScript.kusto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/adxScript.kusto -------------------------------------------------------------------------------- /arm-templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/arm-templates/.DS_Store -------------------------------------------------------------------------------- /arm-templates/dataexplorer.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/arm-templates/dataexplorer.template.json -------------------------------------------------------------------------------- /arm-templates/eventhub.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/arm-templates/eventhub.template.json -------------------------------------------------------------------------------- /arm-templates/workspacefunctions.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCloudScout/m365defender-adx/HEAD/arm-templates/workspacefunctions.template.json --------------------------------------------------------------------------------