Send events to an Azure Time Series Insights Gen1 environment by using an event hub

Note

The Time Series Insights (TSI) service will no longer be supported after March 2025. Consider migrating existing TSI environments to alternative solutions as soon as possible. For more information on the deprecation and migration, visit our documentation.

Caution

This is a Gen1 article.

This article explains how to create and configure an event hub in Azure Event Hubs. It also describes how to run a sample application to push events to Azure Time Series Insights from Event Hubs. If you have an existing event hub with events in JSON format, skip this tutorial and view your environment in Azure Time Series Insights.

Configure an event hub

  1. To learn how to create an event hub, read the Event Hubs documentation.

  2. In the search box, search for Event Hubs. In the returned list, select Event Hubs.

  3. Select your event hub.

  4. When you create an event hub, you're creating an event hub namespace. If you haven't yet created an event hub within the namespace, on the menu, under Entities, create an event hub.

    List of event hubs

  5. After you create an event hub, select it in the list of event hubs.

  6. On the menu, under Entities, select Event Hubs.

  7. Select the name of the event hub to configure it.

  8. Under Overview, select Consumer groups, and then select Consumer Group.

    Create a consumer group

  9. Make sure you create a consumer group that's used exclusively by your Azure Time Series Insights event source.

    Important

    Make sure this consumer group isn't used by any other service, such as an Azure Stream Analytics job or another Azure Time Series Insights environment. If the consumer group is used by the other services, read operations are negatively affected both for this environment and for other services. If you use $Default as the consumer group, other readers might potentially reuse your consumer group.

  10. On the menu, under Settings, select Shared access policies, and then select Add.

    Select Shared access policies, and then select the Add button

  11. In the Add new shared access policy pane, create a shared access named MySendPolicy. You use this shared access policy to send events in the C# examples later in this article.

    In the Policy name box, enter MySendPolicy

  12. Under Claim, select the Send check box.

Add an Azure Time Series Insights instance

In Azure Time Series Insights Gen2, you can add contextual data to incoming telemetry using the Time Series Model (TSM). In TSM, your tags or signals are referred to as instances, and you can store contextual data in instance fields. The data is joined at query time by using a Time Series ID. The Time Series ID for the sample windmills project that we use later in this article is id. To learn more about storing data in instance fields read the Time Series Model overview.

Create an Azure Time Series Insights event source

  1. If you haven't created an event source, complete the steps to create an event source.

  2. Set a value for timeSeriesId. To learn more about Time Series ID, read Time Series Models.

Push events to windmills sample

  1. In the search bar, search for Event Hubs. In the returned list, select Event Hubs.

  2. Select your event hub instance.

  3. Go to Shared Access Policies > MySendPolicy. Copy the value for Connection string-primary key.

    Copy the value for the primary key connection string

  4. Navigate to the TSI Sample Wind Farm Pusher. The site creates and runs simulated windmill devices.

  5. In the Event Hub Connection String box on the webpage, paste the connection string that you copied in the windmill input field.

    Paste the primary key connection string in the Event Hub Connection String box

  6. Select Click to start.

    Tip

    The windmill simulator also creates JSON you can use as a payload with the Azure Time Series Insights GA Query APIs.

    Note

    The simulator will continue to send data until the browser tab is closed.

  7. Go back to your event hub in the Azure portal. On the Overview page, the new events received by the event hub are displayed.

    An event hub Overview page that shows metrics for the event hub

Supported JSON shapes

Example one

  • Input: A simple JSON object.

    {
        "id":"device1",
        "timestamp":"2016-01-08T01:08:00Z"
    }
    
  • Output: One event.

    id timestamp
    device1 2016-01-08T01:08:00Z

Example two

  • Input: A JSON array with two JSON objects. Each JSON object is converted to an event.

    [
        {
            "id":"device1",
            "timestamp":"2016-01-08T01:08:00Z"
        },
        {
            "id":"device2",
            "timestamp":"2016-01-17T01:17:00Z"
        }
    ]
    
  • Output: Two events.

    id timestamp
    device1 2016-01-08T01:08:00Z
    device2 2016-01-08T01:17:00Z

Example three

  • Input: A JSON object with a nested JSON array that contains two JSON objects.

    {
        "location":"WestUs",
        "events":[
            {
                "id":"device1",
                "timestamp":"2016-01-08T01:08:00Z"
            },
            {
                "id":"device2",
                "timestamp":"2016-01-17T01:17:00Z"
            }
        ]
    }
    
  • Output: Two events. The property location is copied over to each event.

    location events.id events.timestamp
    WestUs device1 2016-01-08T01:08:00Z
    WestUs device2 2016-01-08T01:17:00Z

Example four

  • Input: A JSON object with a nested JSON array that contains two JSON objects. This input demonstrates that global properties can be represented by the complex JSON object.

    {
        "location":"WestUs",
        "manufacturer":{
            "name":"manufacturer1",
            "location":"EastUs"
        },
        "events":[
            {
                "id":"device1",
                "timestamp":"2016-01-08T01:08:00Z",
                "data":{
                    "type":"pressure",
                    "units":"psi",
                    "value":108.09
                }
            },
            {
                "id":"device2",
                "timestamp":"2016-01-17T01:17:00Z",
                "data":{
                    "type":"vibration",
                    "units":"abs G",
                    "value":217.09
                }
            }
        ]
    }
    
  • Output: Two events.

    location manufacturer.name manufacturer.location events.id events.timestamp events.data.type events.data.units events.data.value
    WestUs manufacturer1 EastUs device1 2016-01-08T01:08:00Z pressure psi 108.09
    WestUs manufacturer1 EastUs device2 2016-01-08T01:17:00Z vibration abs G 217.09

Next steps