Displaying Last 10 Minutes of AWS IoT Core Data on Web Dashboard using AWS Services

0

Which AWS services can we use to transfer data from AWS IoT Core to our own web dashboard and display the last 10 minutes of data on the dashboard? In other words, how can we display the latest 10 minutes of data received from IoT Core on our web dashboard? The key point here is to send the data received from IoT Core in the last 10 minutes to the web dashboard. What would be the most efficient architecture to achieve this?

1 Answer
2
Accepted Answer

There are multiple ways to achieve what you are asking and all depends on the user experience and functionality you want to provide. Assuming that the last ten minutes of data should be displayed as a user opens the dashboard for the first time and then refreshed in near-real-time as new data comes in, one option would be the following:

  1. Ingest data from IoT Core into Amazon Timestream
  2. When the dashboard is opened it reads data from Amazon Timestream to get the last 10 minutes of data via a backend API built using API Gateway and Lambda functions
  3. The dashboard subscribes to the AWS IoT Core topic(s) where the data is being published to receive the updates

As an alternative you can ingest data from AWS IoT Core into AWS IoT Sitewise and use the IoT AppKit components to visualize the data on the custom dashboard.

AWS
EXPERT
answered a year ago
  • This option may work for us, but what are the other options?

  • To give you the right answer, please provide additional information about the user experience

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions