Querying Python Metrics as customMetrics and custom attributes as customDimensions in Azure Application Insight

Azure Application Insights can be a collection point for Python Metrics that you can query and filter against. We can send Open Census metrics from anywhere in the world into Azure Application Insights. This lets us see our program metrics from any browser that can reach the Azure console. Application Monitor gives us a zero admin performance console. OpenCensus metrics are recorded in Application Insights as customMetrics . Every metric sent is a row in Application Insights. The Azure OpenCensus Azure Exporter adds a standard set of attributes that appear in App Insights as CustomDimensions . We can add additional custom dimensions (attributes) to any metrics record sent Azure Application Insights. All metrics are actually captured in a customMetrics table that we can query against. Execution pre-requisites You have an Azure login You have created an Azure Application Insights Application ...