Advanced Configurations

Data Connectors can through configuration be tailored to fit more custom use-cases.

Preliminaries

Before diving into how to configure a Data Connector, there are a few things worth keeping in mind when working with them.

  • Multiple Projects Data Connectors are created and configured on a per-project basis. If you want multiple projects to send data to the same Endpoint URL, you have to create one Data Connector per project.

  • Access Control To create, update, and delete a Data Connector, your DT Studio User or Service Account must have the role of Project Developer or higher.

  • Multiple Data Connectors All Data Connectors in a project will receive events from all the devices in that project. It is recommended to filter to event types when possible.

Enable and Disable

It is possible to enabled and disable a Data Connector at will.

In DT Studio, click on API Integrations -> Data Connectors. Select the desired Data Connector, then toggle the Data Connector enabled switch. Remember to click Update Data Connector.

Disabled Data Connectors have no at-least-once guarantee.

When a Data Connector is disabled, undelivered events and events generated after being disabled will not be sent. Re-enabling the Data Connector will not backfill data from the period it was disabled and must be fetched programmatically using our REST API.

Auto-Disabled Data Connectors

A Data Connector will be automatically disabled by DT Cloud if it has failed for an extended period of time without any success. A push-attempt from a Data Connector is considered a failure if the receiver responded with a non-200 status code, or didn’t respond at all. A Data Connector that is disabled by DT Cloud will get the status SYSTEM_DISABLED.

Filtering on Event Types

By default, all event types are forwarded by a Data Connector. If you want to avoid uneccesary traffic on your endpoint, events can be filtered by type.

In DT Studio, click on API Integrations -> Data Connectors. Select the desired Data Connector, then toggle the Forward All Events followed by a selection. Remember to click Update Data Connector.

Including Labels

You can include labels held by a device with each event forwarded by the Data Connector.

In DT Studio, click on API Integrations -> Data Connectors. Select the desired Data Connector, then append the label keys to the list. Remember to click Update Data Connector.

DT Studio Specific Labels

DT Studio uses labels with the keys name and description to show as the display name and the description of a device. It is recommended that an integration uses these labels in the same way when displaying or updating a device.

Adding HTTP Headers

Custom HTTP headers can be included with each event forwarded by a Data Connector.

In DT Studio, click on API Integrations -> Data Connectors. Select the desired Data Connector, then add a key- and value pairs for your custom headers. Remember to click Update Data Connector.

Signing Events

For increased security in a production integration, we recommend signing each Event with a Signature Secret that can be verified on the receiving end.

  • The HTTP header includes a JSON Web Token (JWT) signed with the Signature Secret.

  • The JWT payload contains the checksum of the request body.

This allows you to both validate the origin and content integrity of the received request for a more secure connection. The process is two-fold and must be configured for both the Data Connector and endpoint.

Signing Events Sent by the Data Connector

Adding a signature secret to your Data Connector will automatically sign each forwarded event.

In DT Studio, click on API Integrations -> Data Connectors. Select the desired Data Connector, then add a strong and unique signature secret. Remember to click Update Data Connector.

Verifying Signed Events

To handle incoming events that have been signed by a signature secret, see Verifying Signed Events.

Synchronize

When synchronizing the Data Connector, the state of each device currently in the project will be sent as events. These events will be dated back in time to when they were reported from the device. Note, however, that the event id will be different for the synchronized events.

In DT Studio, click on API Integrations -> Data Connectors. Select the desired Data Connector, then click Synchronize Data Connector towards the bottom of the page.

Last updated