├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── fabric ├── Dashboard-Engineering.json ├── README.md ├── VehicleData-FileCreation.ipynb ├── VehicleData-SampleQueries.kql ├── VehicleData-Setup.kql └── sample-fabric-configuration.svg └── mdf42adx ├── .devcontainer └── devcontainer.json ├── AzBatchMDF2AnalyticsFormat.py ├── AzureBatch.py ├── CreateSampleMDF.py ├── DecodeCSV.py ├── DecodeParquet.py ├── DecodeUtils.py ├── Dockerfile ├── MDF2AnalyticsFormat.py ├── MDF2AnalyticsFormatProcessing.py ├── MetadataTools.py ├── README.md ├── demo.kql ├── deployment.kql └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /fabric/Dashboard-Engineering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/fabric/Dashboard-Engineering.json -------------------------------------------------------------------------------- /fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/fabric/README.md -------------------------------------------------------------------------------- /fabric/VehicleData-FileCreation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/fabric/VehicleData-FileCreation.ipynb -------------------------------------------------------------------------------- /fabric/VehicleData-SampleQueries.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/fabric/VehicleData-SampleQueries.kql -------------------------------------------------------------------------------- /fabric/VehicleData-Setup.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/fabric/VehicleData-Setup.kql -------------------------------------------------------------------------------- /fabric/sample-fabric-configuration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/fabric/sample-fabric-configuration.svg -------------------------------------------------------------------------------- /mdf42adx/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /mdf42adx/AzBatchMDF2AnalyticsFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/AzBatchMDF2AnalyticsFormat.py -------------------------------------------------------------------------------- /mdf42adx/AzureBatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/AzureBatch.py -------------------------------------------------------------------------------- /mdf42adx/CreateSampleMDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/CreateSampleMDF.py -------------------------------------------------------------------------------- /mdf42adx/DecodeCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/DecodeCSV.py -------------------------------------------------------------------------------- /mdf42adx/DecodeParquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/DecodeParquet.py -------------------------------------------------------------------------------- /mdf42adx/DecodeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/DecodeUtils.py -------------------------------------------------------------------------------- /mdf42adx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/Dockerfile -------------------------------------------------------------------------------- /mdf42adx/MDF2AnalyticsFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/MDF2AnalyticsFormat.py -------------------------------------------------------------------------------- /mdf42adx/MDF2AnalyticsFormatProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/MDF2AnalyticsFormatProcessing.py -------------------------------------------------------------------------------- /mdf42adx/MetadataTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/MetadataTools.py -------------------------------------------------------------------------------- /mdf42adx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/README.md -------------------------------------------------------------------------------- /mdf42adx/demo.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/demo.kql -------------------------------------------------------------------------------- /mdf42adx/deployment.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/deployment.kql -------------------------------------------------------------------------------- /mdf42adx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/adx-automotive-demos/HEAD/mdf42adx/requirements.txt --------------------------------------------------------------------------------