Exercise - View the results from an Azure Stream Analytics job

Completed

After a Stream Analytics job is completed, you can view the results in the Azure portal. On the job's Overview pane, you see the status information, the location, and resource group where the service is provisioned, and the subscription details. Here, you can also confirm when the service was created and started.

To see the job's results, perform the following steps.

  1. In the Azure portal, go to your output storage account streamsink.

  2. Select Storage browser.

  3. On the right, under Blob containers, open your container learn-container-output.

  4. Go to the output folder, and select the file inside it.

  5. Select Download.

    Screenshot that shows the query output result and file download button.

When you open the file, you should see something like this.

```json
{
    "city" : "Reykjavik",
    "latitude" : 64,
    "longitude" : 21
}
```