Stream Analytics on the Edge with Azure Percept - Debugging route

Charles Elwood 106 Reputation points MVP
2021-07-23T14:10:48.633+00:00

I was able to follow these directions to get simulated temp sensor data through azure stream analytics on the edge.
https://learn.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-stream-analytics?view=iotedge-2020-11

I am now trying to modify the code to put azure eye data through stream analytics to a cloud storage container.
Need some help debugging.

Steps to reproduce :

  1. I created an output in the stream analytics editor
  2. I modified the query to select * from the input stream from the azure eye and then place into the cloud storage container.
    SELECT
    *
    INTO
    [name of cloud storage container]
    FROM
    [name of input - Edge Hub]
  3. In the IOT Hub I added in Edge Devices, set module, routes the following route
    FROM /messages/modules/azureeyemodule/outputs/* INTO BrokeredEndpoint("/modules/streamonedgeversion2/inputs/[name of input to ASA]")
  4. In Percept Studio I then verify via view Telemetry that the Percept is at least sending data from AzureEye and the temp simulator up to cloud.
  5. I opened Azure Storage Explorer and took a look at the Storage container and I don't see the new container being populated with new data from this query.

@Mike McCoy - MSFT @Amira Youssef

Azure Percept
Azure Percept
A comprehensive Azure platform with added security for creating edge artificial intelligence solutions.
72 questions
Azure IoT
Azure IoT
A category of Azure services for internet of things devices.
391 questions
Azure IoT Hub
Azure IoT Hub
An Azure service that enables bidirectional communication between internet of things (IoT) devices and applications.
1,151 questions
Azure Stream Analytics
Azure Stream Analytics
An Azure real-time analytics service designed for mission-critical workloads.
342 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Charles Elwood 106 Reputation points MVP
    2021-08-16T13:02:53.467+00:00

    @QuantumCache @Amira Youssef

    I was able to follow the following directions and now have ASA running and outputting simulated sensor data on the edge through stream analytics and routed up through IoT Hub and can view telemetry data in Percept Studio and also see the screen shot that ASA is processing the data as shown in attached screenshot.

    Next step, see if I can route Percept Data through the same path.

    https://learn.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-stream-analytics?view=iotedge-2020-11

    123595-image.png

    1 person found this answer helpful.