Application Insights and Azure Stream Analytics Query a custom JSON property
问题 I am trying to read my Application Insights export into a SQL Table using stream analytics. These are Custom and Metric events I'm trying to capture so part of the JSON is the "name" of the custom or metric event (e.g. TestMethod1) and the JSON looks like this: { "metric": [ ], "internal": .. host of other json data... "context": { "custom": { "metrics": [ { "TestMethod1": { "value": 42.8207, "count": 1.0, "min": 42.8207, "max": 42.8207, "stdDev": 0.0 } } ] } } } Using analytics Sql like