Back to all articles

Designing a fancy and insightful dashboard in Cumul.io is an easy job. Now, what’s the next step? Once your dashboard is ready, of course you’ll want to share it with the right people. You might want to plug it in your company’s platform, or showcase it on your website. Or even better: you want to offer analytics to your customers within your own app, styled to your own company’s look and feel!

Screenshot of what we'll build in this integrated dashboard tutorial
Example of an integrated dashboard in a platform

Luckily, our platform is built for integration. In this post, we’ll walk you through every step of the process to integrate a dashboard in your website, app or platform. In that way, you can offer integrated analytics to your customers.

Generally, we distinguish between dashboard embedding and dashboard integration:

  • dashboard embedding: adding a dashboard to your webpage or app, which is accessible to anyone who has the URL of the page that contains the embedded dashboard.
  • dashboard integration: adding a dashboard to a secured app or webpage. This provides the advantage of token-based security. These tokens are only valid for a limited amount of time. Additionally, it will allow you to filter the data in the dashboard based on user information in the login.

In this integrated dashboard tutorial, we’ll discuss both how to embed & how to integrate a dashboard in your platform. Let’s start already!

Integrated dashboard tutorial

Setup

You can embed a dashboard in one simple step. Simply add the embed code to your website or app. To start with, we need the following 2 things:

  • a Cumul.io account with access to integration features, available as of the Startup license (the free trial account has full access to all features). If you are already using Cumul.io, check your license in the profile section to verify you have at least a Startup license to access embedding features
  • a HTML file where we can include the embed code

Getting started

For convenience, you can download all the files which we’ll use in this tutorial. Start by downloading and extracting the zip file. It includes a backend folder, a frontend folder and also the .csv dataset we’ll use for our dashboard.

Creating the dashboard

Logically, we’ll need to create a dashboard first, before we can embed it. For the dashboard we’ll use a demo dataset 'demo_orders.csv'. It contains data about the customers of a fictional shop, and the orders they placed. I created a demo dashboard on this dataset for you to use as inspiration.

To follow along with this integrated dashboard tutorial, upload the demo_orders.csv set in your Cumul.io account. Then, recreate the dashboard in your own Cumul.io account. If you want to get familiar with our dashboard editor, you can have a look at our Academy!

Of course, feel free to build another dashboard using your own data, or use one of your existing dashboards for this tutorial!

Next, let’s prepare the dashboard for embedding. In the dashboard overview page, search for the dashboard you want to embed. Click the share icon and navigate to the ’embed’ tab in the modal.
You will see 2 toggles to:

  • enable embedding with a shareable link
  • share the datasets that are needed to show this dashboard
Example of the code to add an integrated dashboard to your software application

After enabling the toggles, Cumul.io will automatically generate the code we’ll use to embed the dashboard in your website. For more information on what this code exactly does and contains, you can have a look at our developer documentation.

Please note that if you’re on a plan that allows integration (or on a free trial), there will be an ‘integration’ tab instead of an ’embed’ tab. The integration code is nearly the same as for embedding. However, it has 2 added fields: key and token, which you can simply leave out for embedding.

Building the website

Next, we will build a small example website to embed our dashboard in. You can take a look at the already finished index.html file in the frontend folder of the downloadable zip file. Or, just follow along with building it.

We’ll begin by defining the structure of our HTML file.

Three files are loaded at the top of the page. Firstly, it loads bootstrap CSS for styling. Secondly, we’ll add some extra custom styling to main.css. This makes our website a bit more appealing. Finally, the cumulio.min.js file is included, our integration API, which allows secure rendering of the dashboard. Next, let’s take a look at the completed index.html file.

The actual dashboard embedding starts at line 27 of the above code snippet. First, it calls the addDashboard function. This function loads and renders the dashboard with the specified id in the specified HTML div (my-dashboard-104 in this case). In this function, you’ll need to change the dashboardId to your own dashboard id. In the addDashboard function, the loader style is also set. This is fully optional. You can use it to visually smoothen the loading. You can read a full specification of all possible parameters for this function in the developer documentation. That’s it! We have embedded a Cumul.io dashboard in our website using only 10 lines of code. Now it’s time to take a look at the result.

Viewing the embedded dashboard

First, simply go to the folder where you extracted the zip file, go to the frontend folder and right-click the index.html file to open it in your browser.

The code file you'll use in this integrated dashboard tutorial

The resulting website, with the embedded dashboard in it, will look like this.

Screenshot of the embedded dashboard we're building in this integrated dashboar tutorial

You can use the filter item in the top-left of the dashboard to (de)select a certain customer. That way, the dashboard will only show data about the selected customers.

While this is already great, you can go one step further. You can build a log-in system or user selection tool around it. That means a customer can securely log in to the website and view the dashboard. Then, this will automatically filter to contain only his or her data. There is no way to view data from other customers. Using this method, you can create secure and personalized integrated analytics for your platform.

For this, we will need a second, server-side step: requesting authorization tokens for the dashboard and dataset(s) and specifying the filter(s). This brings us to dashboard integration.

Dashboard integration

Besides including the embed code in your website or app, dashboard integration also needs a server-side step. In that step, we request an authorization key and token, using the Cumul.io API.

This step has to be done on the server-side for security. If we would request the authorization token from the front-end, users could manipulate this request and view data of other users. Now, your back-end will decide who has access to the data!

In this section, we will be building a small app which uses integrated analytics.

Server-side

Let’s begin with implementing this server-side step. In this tutorial, we’ll use NodeJS for our server. However, this doesn’t mean you can only use Cumul.io in NodeJS applications. You can for example also use our PHP SDK, C# SDK or Java SDK.

We will need a very simple webserver (webserver.js) that listens to requests made by our front-end. We’ll also need a second, main file (index.js) that uses this webserver, and requests a Cumul.io authorization key and token with the correct filters. It will then return the key and token to our front-end, where we can use it for integrating the dashboard. You can find both files in the zip file.

Setup

To start, you only need 2 things:

  • A Cumul.io account: a free trial account has full access to all features, including API access and dashboard integration. Contact us if you are interested in further exploring Cumul.io integrated analytics.
  • An installation of nodejs.

Verify in a terminal that node and npm (node’s package manager) are installed correctly.

How to check if node and npm are installed correctly on your computer

Libraries

We will be using the following libraries to build our webserver.

  • Express: a web framework that we’ll use to build the webserver.
  • Body parser: middleware that is necessary for express to parse incoming requests.
  • Compression: middleware for express that decreases the size of the response body and hence increases the speed of your API.
  • Dotenv: a convenient way to load environment variables. We will use it to load the Cumul.io API key and token.
  • Cumul.io Node SDK: node.js module to interact with the Cumul.io API in order to request authorization tokens.

The backend folder of the zip file already includes a package.json file. So, you can install all required libraries by going to the backend folder in your terminal and then using npm.

To be able to use the Cumul.io Node SDK, you first need to create an API key and token in your Cumul.io profile settings. Next, modify the .env file so that it uses your newly generated Cumul.io API key and token in the file.

Writing the webserver

Our webserver file, webserver.js, looks like this.

The zip file also includes the webserver.js file, and is now ready for use.

Writing the main index.js file

Next up, we’ll create a file index.js that uses our webserver and can process a basic get request. It uses the Cumul.io Node SDK to request an authorization key & token for our dashboard and dataset. Here, the Cumul.io API key and token you created are first read from the .env file. We will also add an extra field filters to our API call. This will ensure that the dashboard is personalized for the user who views the dashboard. The value of the filter will be passed from the front-end of our application. More information about filter types and adding filters in authorization token requests can be found in our developer documentation.

 A few notes about the parameters in the client.create API call:

  • type: for integration, we will always use type ‘temporary’
  • expiry: the date/time the authorization token will stop working
  • securables: the list of dashboards and datsets the authorization token will grant access to. In this example, the first UUID is the id of the dashboard and the second UUID is the id of the dataset.
  • filters: a list of filters which will be applied to the dashboard. You can find more information on how to specify filters in our developer documentation. The securable_id here is the id of the dataset, which the dashboard uses. The value field of the filter is passed as a parameter from the front-end of our app, more on that later.

You will need to change the securables, securable_id and column_id of the above code example to use the id’s of your own dashboard, dataset and column. You can find these id’s in the platform itself. Our developer documentation shows where you can find the dashboard id, dataset id and column id. Once you use your correct id’s, our server-side implementation is now ready to be called from the client-side of our application!

Client-side

We’ll continue building on the small example website we made for dashboard embedding, and use the earlier HTML code as a base. You can find the finished index-integration.html file in the frontend folder of the downloadable zip file, or you can follow along with the steps below. We will make quite some changes to the original HTML code of our website. Most importantly, we’ll build a user selection menu on top of our website. Here, a user of the app can choose a customer name to filter the dashboard on. In this selection menu, we’ll include six example names from the tutorial_orders dataset. In your own app or platform, you would ideally add password security to this user selection system, but adding that here would be outside the scope of this tutorial. So for now, you can select a user just by clicking his or her picture, which will look like this.

Example of a multi-tenancy UI: choose which user will be logged in

Next up, we’ll make some changes to the JavaScript code of our app. In the earlier embedding example, we only called the addDashboard function. We will now add a login and logout function to this. The login function will fire a request to the server we just developed, which runs on localhost:3030. The server will then request the authorization key and token from the Cumul.io API, and return those to the front-end. We will pass along the selected name in the request, so that it filters the dashboard and the underlying dataset to only contain data about the selected user. The login function will also hide the user selection menu. The logout function uses the removeDashboard function of the Cumul.io Integration API to safely remove the dashboard. After that, it will show the user selection menu again. Let’s take a look at the complete, adapted HTML file.

Once again, in the Cumulio.addDashboard function, you’ll need to change the dashboardId to your own dashboard id. The actual integration happens in the highlighted lines 71-89: it uses the returned authorization key and token in the Cumulio.addDashboard function to securely render the filtered dashboard.

Overview

Example of ll the files you have in your folder of the integrated dashboard tutorial

To summarize, these are the files you should have right now in your folder. index.js and webserver.js together form our back-end, which we’ll call to return authorization tokens for the dashboard. index-integration.html is the front-end of our integrated analytics application. Now, it’s time to spin up our server and take a look at the result! Open a terminal and go to the backend folder of our application. Start the server with the following command.

Our server is now listening for requests.

Server listening for requests

Next, from the frontend folder, open the index-integration.html file in any web browser. Initially, you will see the user selection menu. Clicking a user picture calls the login function. It passes the clicked name as a parameter. Once you click one of the six pictures, this activates the integration flow. The login function calls our server, with the selected name contained in the request. Our server makes a request to the Cumul.io API for an authorization key & token, containing a filter on the selected customer name. Then, it returns the authorization key & token to our front-end. Finally, it uses the addDashboard function of the Cumul.io Integration API to securely render our dashboard in the website, containing the filtered data for the selected customer. We can visualize the flow of our app as follows.

Schema of how integrated dashboards work with your application

If we, for example, select Chad Greenfelder from the drop-down, the result will look like this.

Integrated dashboard showing only the data it's supposed to show when Chad Greenfelder is logged in

Let’s compare the above example to the original embedding example in the beginning of this blogpost. There, the user could select and view data of any customer in the dataset. Now, in our securely integrated example, the filter ensures that the dashboard contains only data of the selected user. That’s it! You’ve built a website containing an embedded dashboard, as well as a mini-app with a secure dashboard integration. Now sit back, relax, and play around with your beautiful dashboards.

Final notes

Both dashboard embedding & dashboard integration have their advantages and disadvantages. Your choice will depend on your specific use case. As you saw, you can embed a dashboard in an existing webpage in just 10 lines of code. The setup is fast and super-easy. However, anyone who has the URL of that webpage can view the dashboard. This approach is perfect when you’re working with open data – for example the Statbel portal – but might not be ideal when dealing with very sensitive data. In that case, a dashboard integration is a perfect match. For the sake of simplicity of this blogpost, we built a selection menu to select a user. If you would build a secure password-based log-in system around this instead, this would allow highly secure and personalized analytics for your platform! Would you like to learn more about integrated analytics for your platform? Just let us know, we’re happy to help you move forward!

New call-to-action

Cumul.io logo

Start a free Cumul.io trial

Add dashboards to your SaaS platform in days instead of months. Try 10 days for free.