Qubitro is a modern, brand and model agnostic IoT platform for designing and developing IoT projects. Connecting devices can be performed via multiple protocols, while security is based on using TLS/DTLS and a built-in token authentication mechanism. Thanks to its user-friendly portal and programmable APIs, you do not have to worry about the infrustructure management and scalability.
Prerequisites
Setup Qubitro
Log in to your Qubitro user account and navigate to Projects on the left hand menu.
Create a new project by choosing New Project, then providing a Project Name and a Project Description.

When you have created your project, switch to the Settings tab and note down the Project ID since you will need it in the later steps.

In the upper right corner, click on your avatar and then select Account. You will see a detailed info related to your account.
In your account settings, find the Webhook Signing Key under the API Keys tab. You will need this key also to complete the Webhook integration on The Things Stack.

Configure The Things Stack
In order for Qubitro to be able to decode the data coming from The Things Stack, you need to create an uplink payload formatter on The Things Stack. The example uplink payload formatter is shown below.
function decodeUplink(input) {
return {
data: {
temperature: input.bytes[0],
humidity: input.bytes[1]
},
warnings: [],
errors: []
};
}
Next, you can create a Webhook integration by instantiating the Qubitro Webhook template.
Copy the Project ID and the Webhook Signing Key values from Qubitro. Paste them to the respectively named fields of the Qubitro template on The Things Stack.

To see or edit the values of all parameters of the Qubitro integration, click on the integration after you created it with the Webhook template.
Monitor Your Data
Go back to Qubitro and navigate to your project. You will see that a device has been automatically added to your project.
Click on the device and switch to the Data tab to see the incoming decoded data from The Things Stack.

Switch to the Analytics tab and click the Create chart button to visualize this data.
Enter a Chart Name, choose the parameters you wish to visualize on this chart, select the type of chart for each parameter and the color to differentiate them. Finish with Create.

Now, you can see the real-time chart showing your data coming from The Things Stack!

For more cool features, see the official Qubitro documentation!