Stop the war

Stand with Ukraine flag

Support Ukraine

Try it now Pricing
Cloud
Community Edition Professional Edition Cloud Edge PE Edge IoT Gateway License Server Trendz Analytics Mobile Application PE Mobile Application MQTT Broker
Documentation Devices Library Guides API FAQ
On this page

Getting Started with ThingsBoard Cloud

The goal of this tutorial is to demonstrate the basic usage of the most popular ThingsBoard features. You will learn how to:

  • Connect devices to ThingsBoard;
  • Push data from devices to ThingsBoard;
  • Build real-time end-user dashboards;
  • Define thresholds and trigger alarms;
  • Set up push notifications about new alarms over email, SMS, or other systems.

In this guide, we will connect and visualize data from the temperature sensor to keep it simple.

Prerequisites

You will need to have access to ThingsBoard Professional Edition. The easiest way is to use ThingsBoard Cloud server. The alternative option is to install ThingsBoard using Installation Guide.

Step 1. Provision device

As an example, let’s add a device that will transmit the following data to ThingsBoard platform: the device’s name and temperature readings as telemetry.

To add a new device, follow these steps:

  • Login to your ThingsBoard instance and go to the "Devices" page of the "Entities" section;
  • By default, you navigate to the device group “All”. Click on the "+" icon in the top right corner of the table and then select "Add new device" from drop-down menu;
  • Enter the device name. For example, "My New Device". No other changes are required at this time. Click "Add";
  • A window will open where you can check the device's connection to ThingsBoard. This step is optional. Let's close this window for now and return to checking the connection in the next step in more detail;
  • Congratulations on adding your first device! As you add more devices, the will be added at the top of the table, since the table automatically sorts devices by their creation time, with the newest ones first.


When adding a new device, you will receive a notification. You can view it by clicking on the “bell” icon in the top right corner.

Learn more about notifications and how to configure them here.


You may also use:

  • Bulk provisioning to provision multiple devices from a CSV file using UI;
  • Device provisioning to allow device firmware to provision the device automatically, so you don’t need to configure each device manually;
  • REST API to provision devices and other entities programmatically;

Step 2. Connect device

Now, let’s check the connection of our device to the ThingsBoard platform. To accomplish this, use the “Check connectivity” functionality to publish telemetry data (for example, temperature readings) on behalf of your device. You can do this both while adding the device and after.

  • Click on the your device, and click the "Check connectivity” button in the "Device details" window;
  • In the opened window select the messaging protocol and your operating system. Install the necessary client tools and copy the command;
  • Execute previously copied command. Once you have successfully published the “temperature” readings, the device state should be changed from "Inactive" to "Active" and you should see the published "temperature" readings. Now, close the connectivity window.


You may also use ThingsBoard API reference. Here, you can find more detailed information about all supported protocols for device connectivity.

Step 3. Create dashboard

A dashboard in ThingsBoard allows users to visualize and monitor data collected from IoT devices.

Let’s create a dashboard and add three widgets to it in order to display a list of entities and their latest values, as well as show alarm signals related to the specified entity.

Step 3.1 Create an empty dashboard

To create a new dashboard, follow these steps:

  • Navigate to the "Dashboards" page through the main menu on the left of the screen. By default, you navigate to the dashboard group "All";
  • Click the "+" sign in the upper right corner of the screen, and select "Create new dashboard" from the drop-down menu;
  • In the opened dialog, it is necessary to enter a dashboard title, description is optional. Click "Add";
  • After creating the dashboard, it will open automatically, and you can immediately start adding widgets to it. To save the dashboard, click "Save" button in the upper right corner;
  • Your first dashboard has been successfully created. As you continue to add new dashboards, they will appear at the top of the list. This default sorting is based on the creation timestamp.

Step 3.2 Add an Entities table widget

The “Entities table” widget displays a list of entities and their latest values. The list of entities corresponds to selected devices or other entities, and filters with the ability of additional full-text search and pagination options.

To add the table widget we need to select it from the widget library. Widgets are grouped into widget bundles. Each widget has a data source. This is how the widget “knows” what data to display. To see the latest value of our “temperature” data that we sent during step 2, we should configure the data source.

Let’s add your first widget:

  • Enter dashboard edit mode. Simply open the dashboard and click the "Edit mode" button found in the upper right corner of the screen;
  • Click the "Add widget" button at the top of the screen or click the large "Add new widget" icon in the center of the screen (if this is your first widget on this dashboard);
  • Find the "Tables" widget bundle and click on it;
  • Select the "Entities table" widget;
  • The "Add Widget" window will appear. Specify the previously created device "My New Device" as the data source in the "Device" field. The “name” key has already been added to the “Columns” section, which is responsible for the column with the device name. You need to add another column that will display the value of the "temperature" key. To do this, click "Add column" to add a new field to enter the data key;
  • Click on the newly appeared data key input field. A list of available data keys will open. Select "temperature" data key;
  • Click the "Add" button in the bottom right corner of the widget to complete adding the widget;.
  • To make the widget slightly larger, simply grab the bottom right corner and drag it. Once you're happy with the new size, don't forget to click "Save" to save your changes to the dashboard.

Congratulations! You’ve added your first widget.

In the “Entities table” widget, there are two columns. The first column displays the device’s name, and the second column displays the value of the “temperature” key (device telemetry). So, each column corresponds to an added key.

Now you are able to send a new telemetry reading (as in Step 1), and it will immediately appear in the table.

Step 3.3 Add a Chart widget

Chart widgets allow you to display time series data with customizable line charts and bar charts.

To add the chart widget we need to select it from the widget library. Chart widget displays multiple historical values of the same data key (“temperature” in our case). We should also configure the time window to use the chart widget.

  • Enter edit mode and click the "Add new widget" button at the top of the screen;
  • Find the "Charts" widget bundle and click on it;
  • Select the "Time series сhart" widget;
  • Specify the previously created device "My New Device" as the data source in the "Device" field. In the "Series" section, specify the data key "temperature" to start monitoring the temperature values of the device. Then, click "Add";
  • Resize the widget and apply changes. Publish different telemetry values multiple times, as in Step 2. Note that the widget displays only one minute of data by default. Click "Save" to apply changes;

Congratulations! You have added the chart widget. Now you are able to send a new telemetry reading, and it will immediately appear in the chart.

Also, you can open the timewindow and change the interval and aggregation function. Update the time window setting by clicking the “Update” button.

Step 3.4 Add an Alarms table widget

The alarms table widget displays alarms related to the specified entity in the certain time window. Alarm widget is configured by specifying an entity as the alarm source, and the corresponding alarm fields.

  • Enter edit mode and click the "Add new widget" button at the top of the screen;
  • Find the "Alarm widgets" bundle and click on it;
  • Select "Alarms table" widget;
  • Specify the previously created device "My New Device" as the data source in the "Device" field and select the statuses and severities of alarms you want to display in the alarm widget;
  • Congratulations! You have added the alarm widget. By default, new widgets are added one below the other, stacking downwards. Let's organize our widgets a bit to tidy up their arrangement. Drag the "Time series chart" widget to the top right corner of the dashboard to make room for the "Alarms table" widget;
  • Scroll down to find the "Alarms table" widget. Once you find it, click and drag it over to a free spot. Adjust its size to fit your needs. After you're done tweaking, click "Save" to save the dashboard.

Now it’s time to configure alarm rules and raise some alarms.

Note: in this documentation, we are using a single device as a data source for the widgets. To use dynamic entities (for example, devices of a certain type or related to a certain asset) as data source, you should use the alias. Alias is a reference to a single entity or a group of entities that are used in the widgets. You may learn more about different aliases here.

Step 4. Configure alarm rules

We will use the alarm rules feature to raise the alarm when the temperature reading is greater than 25 degrees. For this purpose, we should edit the device profile and add a new alarm rule. The “My New Device” is using the “Default” device profile. We recommend creating dedicated device profiles for each corresponding device type but will skip this step for simplicity.

  • Go to the "Device profiles" page of the "Profiles" section. Then click on the default device profile row to open its details;
  • Navigate to the "Alarm rules" tab and click "pencil" button to enter edit mode;
  • Click "Add alarm rule" button;
  • Specify alarm type and click the "+" icon to add alarm rule condition;
  • Click the "Add key filter" button to specify a condition;
  • Select a key type, enter a key name, and select a value type. Then, click "Add" button in the "Filters" section;
  • Select an operation and enter a threshold value. Click "Add" button in the lower right corner;
  • Click "Save";
  • Finally, click "Apply changes".

Step 5. Create alarm

Now, our alarm rule is active (see Step 3), and we should send new telemetry on behalf of the device (see Step 1.2) to trigger the alarm. Note that the temperature value should be 26 or higher to raise the alarm. Once we send a new temperature reading, we should immediately see a new alarm on our dashboard.

  • Notice that the new temperature telemetry causes a new active alarm;
  • You may acknowledge and clear alarms using the "Alarms table" widget;
  • When you receive a new alarm, you will receive a message in the notification center. You can view the message by clicking on the bell icon in the upper right corner.

We also recommend reviewing alarm rule examples and documentation about alarm notifications.

Step 6. Alarm notifications

The ThingsBoard Notification center allows sending personalized notifications to end-users. These can include notifications about device activity, changes in temperature within your environment, or other events detected in your IoT ecosystem. Learn more about notifications and how to configure them here.

Additionally, the ThingsBoard PE Mobile Application allows users to receive instant push notifications directly on their smartphone. This ensures that you will always be timely informed about any events in your IoT solution, no matter where you are. Follow this guide to learn how to install the ThingsBoard PE Mobile Application and set up push notifications delivery directly from ThingsBoard instance to your smartphone.

Step 7. Share dashboard with customers

One of the most important ThingsBoard features is the ability to create end-user dashboards. Each Customer User should see his own devices and should not be able to see devices or any other data that belongs to a different customer.

We have already created the Device (see Step 1), the Dashboard and added widgets to it (see Step 3). Now it’s time to create a Customer and a Customer User and make sure they will have access to the device’s data and the dashboard. There are two options for how Tenant Administrator can give access to a certain Entity (Device, Dashboard, Asset, etc.) for a Customer:

  • A. Assign the Customer as the owner of the entity. This option is useful to ensure that only this customer can access the device and its data (see Step 7.2).
  • B. Share the entity with the Customer. This option is useful to share a single dashboard with multiple customers (see Step 7.3).

Step 7.1 Create a customer

Let’s create a customer with the title “My New Customer”. Please see the instructions below:

  • Navigate to the "Customers" page. By default, you navigate to the customer group "All". Click the "+" sign to add a new customer;
  • Input the customer title. Additionally, you can input personal details for the customer and assign a home dashboard. To finalize the customer creation, you can click the "Add" button. In this case, the new customer will be created and located in the "All" customers folder. Let`s create a separate group for our customer. To do this, click on "Next: Owner and groups" button;
  • If desired, you can assign a different owner for this customer. We will leave this option unchanged. Enter a name for the new group and click "Create a new one!";
  • Click "Add" to create a new customers group;
  • Now, click "Add" to create a new customer;
  • The customer has been created and is located in the "My Customers" group.

Step 7.2 Change owner of the device

Let’s assign the Customer as the owner of the device. We will also create a group of devices and add our device to this group.

  • Open "Devices" page. Click on your device to open its details;
  • Click "Manage owner and groups" button;
  • In the "Owner" line, start typing the customer name and then select the customer;
  • Now, create a device group. In the "Groups" line, input the desired device group name. Then, click "Create a new one!";
  • In the next window, click "Add" button to create a device group;
  • Click "Update" to add to the group and change the owner of your device. You can always change the owner back to the tenant;
  • By default, the general device list displays both tenant devices and devices of your customers. Disable "Include customer entities" to only see tenant devices in the device list;
  • Your device list should be empty now.

Make sure that the device is assigned to your customer.

  • Navigate to "Customers" page. Find your customer in the list of customers and then click on the "Manage customer devices" icon;
  • Your device is owned by the customer and is located in the customer's device group "My Devices".

You can make the customer the owner of the device during its creation stage.

  • Click on the "+" icon in the top right corner of the table and then select "Add new device" from drop-down menu;
  • Input device name (for example, "Thermostat") and select the new owner in the "Owner" field. Then, click "Add";
  • Close check connectivity window;
  • The device has been created, and it immediately belongs to your customer.

Step 7.3 Share the dashboard

Let’s share our dashboard with the customer. But нou can’t share an individual dashboard directly; you can only share a dashboard group that includes the desired dashboard. Our dashboard is in the group “All”. Ideally, we should create a new dashboard group and move our dashboard into it, but to simplify this guide, we’ll use the “All” group.

  • Open the "Dashboard" page, and navigate to the "Groups" tab. Click the "Share" icon for the "All" dashboard group;
  • Select the customer you wish to share our dashboard with and specify the permission level. In our case, choose "Read". Then click "Share".

You can also share the dashboard with your customer or user during its creation stage.

  • On the "All" tab of the "Dashboards" page, click on the "+" icon in the top right corner of the table and select "Create new dashboard" from the drop-down menu;
  • Input dashboard name (for example, "Thermostats"). In the "Groups" field of the "Owner and groups" section, select an existing group or enter a name for a new dashboard group (for example, "Thermostats group") and click "Create a new one!";
  • In the opened "Add entity group" window, click "Next: Share entity group" button;
  • Tick the "Share entity group" checkbox, then select the customer you want to share the dashboard group with and specify permissions. Then, click "Add";
  • Click "Add" to confirm created new dashboard;
  • After creating the dashboard, it will open automatically. Click "Save" button in the upper right corner;
  • The dashboard has been created and is located in the "Thermostats group" group. You can navigate to this group by clicking on its name.

Step 7.4 Create a customer user

Finally, let’s create a user that will belong to the customer and will have read-only access to the dashboard and the device itself. You may optionally configure the dashboard to appear just after the user login to the platform web UI.

  • Navigate to "Customers" page. Find your customer in the list of customers and then click on the "Manage customer users" icon;
  • Navigate to the "Groups" tab and select "Customer Users" group;
  • Click "plus" icon in the top right corner;
  • Enter the user's email. Additionally, specify the first and last name. Click "Add";
  • Copy the activation link and save it to a safe place. Then click "OK";
  • Click on the created user to open details. Click "pencil" icon to enter edit mode;
  • Select your "My New Dashboard" as default dashboard and check "Always fullscreen". Apply changes.

Step 7.5 Activate the customer user

  • Paste the previously copied link into a new browser tab and press Enter. Come up with and enter a password twice, then press "Create Password". You will automatically log in as a customer user;
  • You have logged in as a Customer User. You may browse the data and acknowledge/clear alarms.

Next steps


Your feedback

Don’t hesitate to star ThingsBoard on github to help us spread the word. If you have some questions about this sample - post it on the forum.