├── .gitignore ├── AppInsightsPython.dbc ├── AppInsightsTest.dbc ├── README.md ├── Upload-Items-To-Databricks.sh ├── appinsights_logging_init.sh ├── applicationinsights-core-2.6.1.jar ├── applicationinsights-logging-log4j1_2-2.6.1.jar └── images ├── databrickscluster.png ├── dimensiondata.png ├── formatteddata.png └── perfdata.png /.gitignore: -------------------------------------------------------------------------------- 1 | private-keys.txt 2 | -------------------------------------------------------------------------------- /AppInsightsPython.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/AppInsightsPython.dbc -------------------------------------------------------------------------------- /AppInsightsTest.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/AppInsightsTest.dbc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/README.md -------------------------------------------------------------------------------- /Upload-Items-To-Databricks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/Upload-Items-To-Databricks.sh -------------------------------------------------------------------------------- /appinsights_logging_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/appinsights_logging_init.sh -------------------------------------------------------------------------------- /applicationinsights-core-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/applicationinsights-core-2.6.1.jar -------------------------------------------------------------------------------- /applicationinsights-logging-log4j1_2-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/applicationinsights-logging-log4j1_2-2.6.1.jar -------------------------------------------------------------------------------- /images/databrickscluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/images/databrickscluster.png -------------------------------------------------------------------------------- /images/dimensiondata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/images/dimensiondata.png -------------------------------------------------------------------------------- /images/formatteddata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/images/formatteddata.png -------------------------------------------------------------------------------- /images/perfdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdamPaternostro/Azure-Databricks-Log4J-To-AppInsights/HEAD/images/perfdata.png --------------------------------------------------------------------------------