Create a reference data set for your Azure Time Series Insights Gen1 environment using the Azure portal

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 describes how to add a reference data set to your Azure Time Series Insights environment. Reference data is useful to join to your source data to augment the values.

A Reference Data Set is a collection of items that augment the events from your event source. Azure Time Series Insights ingress engine joins each event from your event source with the corresponding data row in your reference data set. This augmented event is then available for query. This join is based on the Primary Key column(s) defined in your reference data set.

Reference data is not joined retroactively. Thus, only current and future ingress data is matched and joined to the reference date set, once it has been configured and uploaded.

Video

Learn about Time Series Insight’s reference data model.

Add a reference data set

  1. Sign in to the Azure portal.

  2. Locate your existing Azure Time Series Insights environment. Select All resources in the menu on the left side of the Azure portal. Select your Azure Time Series Insights environment.

  3. Select the Overview page. Expand the Essentials section near the top of the page to locate the Time Series Insights Explorer URL and open the link.

    Expand Essentials section

    View the Explorer for your Azure Time Series Insights environment.

  4. Expand the environment selector in the Azure Time Series Insights Explorer. Choose the active environment. Select the reference data icon on the upper right in the Explorer page.

    Add reference data

  5. Select the + Add a data set button to begin adding a new data set.

    Add data set

  6. On the New reference data set page, choose the format of the data:

    • Choose CSV for comma-delimited data. The first row is treated as a header row.
    • Choose JSON Array for JavaScript object notation (JSON) formatted data.

    Choose data format.

  7. Provide the data, using one of the two methods:

    • Paste the data into the text editor. Then, select Parse reference data button.
    • Select Choose File button to add data from a local text file.

    For example, paste CSV data: Pasted CSV data

    For example, paste JSON array data: Paste JSON data

    If there is an error parsing the data values, the error appears in red at the bottom of the page, such as CSV parsing error, no rows extracted.

  8. Once the data is successfully parsed, a data grid is shown displaying the columns and rows representing the data. Review the data grid to ensure correctness.

    Review reference data

  9. Review each column to understand the data type assumed, and change the data type if needed. Select the data type symbol in the column heading: # for double (numerical data), T|F for boolean, or Abc for string.

    Choose data types on the column headings.

  10. Rename the column headers if needed. The key column name is necessary to join to the corresponding property in your event source.

    Important

    Ensure that the reference data key column names match exactly to the event name to your incoming data, including case-sensitivity. The non-key column names are used to augment the incoming data with the corresponding reference data values.

  11. Type a value in the Filter the rows... field to review specific rows as needed. The filter is useful for reviewing data, but is not applied when uploading the data.

  12. Name the data set, by filling in the Data set name field above the data grid.

    Name the data set.

  13. Provide the Primary Key column in the data set, by selecting the drop-down above the data grid.

    Select the key column(s).

    (Optional) Select the + button to add a secondary key column, as a composite primary key. If you need to undo the selection, choose the empty value from the drop-down to remove the secondary key.

  14. To upload the data, select the Upload rows button.

    Upload rows and confirm data.

    The page confirms the completed upload and display the message Successfully uploaded dataset.

    Warning

    Columns or properties shared between reference data sets will display a Duplicate property name upload error. The error will not prevent the successful upload of the reference data sets. It can be removed by combining rows sharing the duplicated property name.

  15. Select Add a row, Bulk import rows, or Add a column to add more reference data values, as needed.

    Add a row, Bulk import rows, or Add a column.

    Important

    Any row that shares a unique key with another row will have its columns overridden by the last row added that shares that unique key.

    Note

    Added rows do not need to be rectangular - they may have fewer, greater, or varying columns from the other entries in the reference data set.

Next steps