Forum Discussion

Celwood's avatar
Celwood
Frequent Visitor
5 years ago
Solved

PowerBI streaming analytics or Streaming Dataflows from Azure Percept : Query language question

I have an Azure Percept with data feeding IoT Hub and then through Stream Analytics into PowerBI.

See below screenshot.  My issue :
I am trying to parse out the nested JSON array inside the JSON message coming from the Azure Percept.
I am able to see the "new" field in the test results but want to isolate the bbox and label from the JSON array.

SELECT 
     DATEPART (year, EventProcessedUtcTime) as Year,  
     DATEPART (day, EventProcessedUtcTime) as day, 
     DATEPART (month, EventProcessedUtcTime) as month, 
     event.Neural_Network as new
INTO
    pbiwindowingtest
FROM
     Perceptinput as event
     TIMESTAMP BY EventProcessedUtcTime





Also tried using Streaming Dataflows in Premium Per User Capacity but seeing the data come in as blobs called [object]

 

 

3 Replies