This tutorial is an introduction to FIWARE QuantumLeap - a generic enabler which is used to persist context data into a CrateDB database. The tutorial activates the IoT sensors connected in the previous tutorial and persists measurements from those sensors into the database. To retrieve time-based aggregations of such data, users can either use QuantumLeap query API or connect directly to the CrateDB HTTP endpoint. Results are visualised on a graph or via the Grafana time series analytics tool.
The tutorial uses cUrl commands throughout, but is also available as Postman documentation
- このチュートリアルは日本語でもご覧いただけます。
Details
- Persisting and Querying Time Series Data (CrateDB)
- Architecture
- Prerequisites
- Start Up
- Connecting FIWARE to a CrateDB Database via QuantumLeap
- CrateDB Database Server Configuration
- QuantumLeap Configuration
- Grafana Configuration
- Setting up Subscriptions
- Time Series Data Queries (QuantumLeap API)
- QuantumLeap API - List the first N Sampled Values
- QuantumLeap API - List N Sampled Values at an Offset
- QuantumLeap API - List the latest N Sampled Values
- QuantumLeap API - List the Sum of values grouped by a time period
- QuantumLeap API - List the Minimum Values grouped by a Time Period
- QuantumLeap API - List the Maximum Value over a Time Period
- QuantumLeap API - List the latest N Sampled Values of Devices near a Point
- QuantumLeap API - List the latest N Sampled Values of Devices in an Area
- Time Series Data Queries (CrateDB API)
- CrateDB API - Checking Data persistence
- CrateDB API - List the first N Sampled Values
- CrateDB API - List N Sampled Values at an Offset
- CrateDB API - List the latest N Sampled Values
- CrateDB API - List the Sum of values grouped by a time period
- CrateDB API - List the Minimum Values grouped by a Time Period
- CrateDB API - List the Maximum Value over a Time Period
- Accessing Time Series Data Programmatically
- Next Steps
"Forever is composed of nows."
— Emily Dickinson
FIWARE QuantumLeap is an time-based data-persistence generic enabler created specifically to persist and query time-series database (currently CrateDB and TimescaleDB). The component can respond to NGSI-v2 or NGSI-LD subscriptions.
CrateDB is a distributed SQL DBMS designed for use with the internet of Things. It is capable of ingesting a large number of data points per second and can be queried in real-time. The database is designed for the execution of complex queries such as geospatial and time series data. Retrieval of this historic context data allows for the creation of graphs and dashboards displaying trends over time.
TimescaleDB scales PostgreSQL for time-series data via automatic partitioning across time and space (partitioning key), yet retains the standard PostgreSQL interface. In other words, TimescaleDB exposes what look like regular tables, but are actually only an abstraction (or a virtual view) of many individual tables comprising the actual data. In combination with PostGIS extension can support geo-timeseries.
The appropriate use of time series data analysis will depend on your use case and the reliability of the data measurements you receive. Time series data analysis can be used to answer questions such as:
- What was the maximum measurement of a device within a given time period?
- What was the average measurement of a device within a given time period?
- What was the sum of the measurements sent by a device within a given time period?
It can also be used to reduce the significance of each individual data point to exclude outliers by smoothing.
Grafana is an open source software for time series analytics tool which will be used during this
tutorial. It integrates with a variety of time-series databases including CrateDB and TimescaleDB. It is
available licensed under the Apache License 2.0. More information can be found at https://grafana.com/
.
For the purpose of this tutorial, a series of dummy agricultural IoT devices have been created, which will be attached
to the context broker. Details of the architecture and protocol used can be found in the
IoT Sensors tutorial The state of each device can be
seen on the UltraLight device monitor web page found at: http://localhost:3000/device/monitor
Once QuantumLeap has started aggregating data, the historical state of each device can be seen on the device history
web page found at: http://localhost:3000/device/history/urn:ngsi-ld:Farm:001
This application builds on the components and dummy IoT devices created in previous tutorials. It will use three FIWARE components: the Orion Context Broker, the IoT Agent for Ultralight 2.0, and QuantumLeap .
Therefore the overall architecture will consist of the following elements:
-
The FIWARE Generic Enablers:
- The Orion Context Broker which will receive requests using NGSI-LD
- The FIWARE IoT Agent for UltraLight 2.0 which will receive southbound requests using NGSI-LD and convert them to UltraLight 2.0 commands for the devices
- FIWARE QuantumLeap subscribed to context changes and persisting them into a CrateDB database
-
A MongoDB database:
- Used by the Orion Context Broker to hold context data information such as data entities, subscriptions and registrations
- Used by the IoT Agent to hold device information such as device URLs and Keys
-
A CrateDB database:
- Used as a data sink to hold time-based historical context data
- offers an HTTP endpoint to interpret time-based data queries
-
An HTTP Web-Server which offers static
@context
files defining the context entities within the system. -
The Tutorial Application does the following:
- Acts as set of dummy agricultural IoT devices using the UltraLight 2.0 protocol running over HTTP.
Since all interactions between the elements are initiated by HTTP requests, the entities can be containerized and run from exposed ports.
The overall architecture can be seen below:
To keep things simple all components will be run using Docker. Docker is a container technology which allows to different components isolated into their respective environments.
- To install Docker on Windows follow the instructions here
- To install Docker on Mac follow the instructions here
- To install Docker on Linux follow the instructions here
Docker Compose is a tool for defining and running multi-container Docker applications. A series of YAML files are used to configure the required services for the application. This means all container services can be brought up in a single command. Docker Compose is installed by default as part of Docker for Windows and Docker for Mac, however Linux users will need to follow the instructions found here
You can check your current Docker and Docker Compose versions using the following commands:
docker-compose -v
docker version
Please ensure that you are using Docker version 24.0.x or higher and Docker Compose 2.24.x or higher and upgrade if necessary.
We will start up our services using a simple Bash script. Windows users should download the Windows Subsystem for Linux to provide a command-line functionality similar to a Linux distribution on Windows.
Before you start, you should ensure that you have obtained or built the necessary Docker images locally. Please clone the repository and create the necessary images by running the commands as shown:
git clone https://github.com/FIWARE/tutorials.Time-Series-Data.git
cd tutorials.Time-Series-Data
git checkout NGSI-LD
./services create
Thereafter, all services can be initialized from the command-line by running the services Bash script provided within the repository:
./services [orion|scorpio|stellio]
Note
If you want to clean up and start over again you can do so with the following command:
./services stop
In the configuration, QuantumLeap listens to NGSI LD notifications on port 8668
and persists historic context data
to the CrateDB. CrateDB is accessible using port 4200
and can either be queried directly or attached to the
Grafana analytics tool. The rest of the system providing the context data has been described in previous tutorials.
crate-db:
image: crate:4.1.4
hostname: crate-db
ports:
- "4200:4200"
- "4300:4300"
command:
crate -Clicense.enterprise=false -Cauth.host_based.enabled=false -Ccluster.name=democluster
-Chttp.cors.enabled=true -Chttp.cors.allow-origin="*"
environment:
- CRATE_HEAP_SIZE=2g
If CrateDB exits immediately with a
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
error, this can be fixed
by running the sudo sysctl -w vm.max_map_count=262144
command on the host machine. For further information look within
the CrateDB documentation
and Docker
troubleshooting guide
quantumleap:
image: smartsdk/quantumleap
hostname: quantumleap
ports:
- "8668:8668"
depends_on:
- crate-db
environment:
- CRATE_HOST=crate-db
grafana:
image: grafana/grafana
depends_on:
- cratedb
ports:
- "3003:3000"
environment:
- GF_INSTALL_PLUGINS=orchestracities-map-panel,grafana-clock-panel,grafana-worldmap-panel
The quantumleap
container is listening on one port:
- The Operations for port for QuantumLeap -
8668
is where the service will be listening for notifications from the Orion context broker and where users can query data from.
The CRATE_HOST
environment variable defines the location where the data will be persisted.
The cratedb
container is listening on two ports:
- The Admin UI is available on port
4200
- The transport protocol is available on
port 4300
The grafana
container has connected up port 3000
internally with port 3003
externally. This is because the Grafana
UI is usually available on port 3000
, but this port has already been taken by the dummy devices UI so it has been
shifted to another port. The Grafana Environment variables are described within their own
documentation. The configuration ensures we will be able to
connect to the CrateDB database later on in the tutorial. The configuration also imports a custom map plugin that
helps you in displaying NGSI LD entities over a map.
For the purpose of this tutorial, we must be monitoring a system where the context is periodically being updated. The dummy IoT Sensors can be used to do this.
Details of various buildings around the farm can be found in the tutorial application. Open
http://localhost:3000/building/farm/urn:ngsi-ld:Building:farm001
to display a building with an associated filling sensor
and thermostat.
Open the device monitor page at
http://localhost:3000/device/monitor
, open the barn door and remove some hay from the barn. This can be done by
selecting an appropriate command from the drop-down list and pressing the send
button. The stream of measurements
coming from the devices can then be seen on the same page.
Once a dynamic context system is up and running, we need to inform QuantumLeap directly of changes in context. As expected, this is done using the subscription mechanism of the Orion Context Broker.
Subscriptions will be covered in the next subsections. More details about subscriptions can be found in previous tutorials or in the subscriptions section of QuantumLeap docs.
The rate of change of the Filling Sensor is driven by events in the real-world. We need to receive every event to be able to aggregate the results.
This is done by making a POST request to the /ngsi-ld/v1/subscriptions/
endpoint of the Orion-LD Context Broker.
- The
NGSILD-Tenant
headers is used to filter the subscription to only listen to measurements from the attached IoT Sensors - The
entities
type
in the request body ensures that QuantumLeap will be informed of all FillingLevelSensor data changes. - The
notification
URL must match the exposed port.
With NGSI-LD the observedAt
property-of-property holds the timestamp of the measure. Because the attribute being
monitored contains this property-of-property, the time_index
column within the CrateDB database will match the
data found within the MongoDB database used by the Orion Context Broker rather than using the creation time of
the record within the CrateDB itself.
curl -L -X POST 'http://localhost:1026/ngsi-ld/v1/subscriptions/' \
-H 'Content-Type: application/ld+json' \
-H 'NGSILD-Tenant: openiot' \
--data-raw '{
"description": "Notify me of all feedstock changes",
"type": "Subscription",
"entities": [{"type": "FillingLevelSensor"}],
"watchedAttributes": ["filling"],
"notification": {
"attributes": ["filling", "location"],
"format": "normalized",
"endpoint": {
"uri": "http://quantumleap:8668/v2/notify",
"accept": "application/json",
"receiverInfo": [
{
"key": "fiware-service",
"value": "openiot"
}
]
}
},
"@context": "http://context/user-context.jsonld"
}'
The heart rate and GPS reading of the Animal Collars on the animals on the farm are constantly changing, we only need to sample the values to be able to work out relevant statistics such as minimum and maximum values and rates of change.
This is done by making a POST request to the /ngsi-ld/v1/subscriptions/
endpoint of the Orion Context Broker and
including the throttling
attribute in the request body.
- The
NGSILD-Tenant
headers is used to filter the subscription to only listen to measurements from the attached IoT Sensors - The
entities
type
in the request body ensures that QuantumLeap will be informed of all Device data changes. - The
notification
URL must match the exposed port. - The
throttling
value defines the rate that changes are sampled.
curl -L -X POST 'http://localhost:1026/ngsi-ld/v1/subscriptions/' \
-H 'Content-Type: application/ld+json' \
-H 'NGSILD-Tenant: openiot' \
--data-raw '{
"description": "Notify me of animal locations",
"type": "Subscription",
"entities": [{"type": "Device"}],
"watchedAttributes": ["location", "status", "heartRate"],
"notification": {
"attributes": ["location", "status", "heartRate"],
"format": "normalized",
"endpoint": {
"uri": "http://quantumleap:8668/v2/notify",
"accept": "application/json",
"receiverInfo": [
{
"key": "fiware-service",
"value": "openiot"
}
]
}
},
"throttling": 10,
"@context": "http://context/user-context.jsonld"
}'
Before anything, check the subscriptions you created in steps 1️⃣ and 2️⃣ are working (i.e., at least one notification for each was sent).
curl -X GET \
'http://localhost:1026/ngsi-ld/v1/subscriptions/' \
-H 'Link: <http://context/user-context.jsonld>; rel="http://www.w3.org/ns/json-ld#context"; type="application/ld+json"' \
-H 'NGSILD-Tenant: openiot'
[
{
"id": "urn:ngsi-ld:Subscription:601157b4bc8ec912978db6e4",
"type": "Subscription",
"description": "Notify me of all feedstock changes",
"entities": [
{
"type": "FillingLevelSensor"
}
],
"watchedAttributes": ["filling"],
"notification": {
"attributes": ["filling"],
"format": "normalized",
"endpoint": {
"uri": "http://quantumleap:8668/v2/notify",
"accept": "application/json",
"receiverInfo": [
{
"key": "fiware-service",
"value": "openiot"
}
]
}
}
},
{
"id": "urn:ngsi-ld:Subscription:601157e3bc8ec912978db6e5",
"type": "Subscription",
"description": "Notify me of animal locations",
"entities": [
{
"type": "Device"
}
],
"watchedAttributes": ["location", "state", "heartRate"],
"notification": {
"attributes": ["location", "state", "heartRate"],
"format": "normalized",
"endpoint": {
"uri": "http://quantumleap:8668/v2/notify",
"accept": "application/json",
"receiverInfo": [
{
"key": "fiware-service",
"value": "openiot"
}
]
}
},
"throttling": 10
}
]
QuantumLeap offers an API wrapping CrateDB backend so you can also perform multiple types of queries. The
documentation of the API is here. Mind the versions. If you have
access to your quantumleap
container (e.g., it is running in localhost
or port-forwarding to it), you can navigate
its API via http://localhost:8668/v2/ui
.
Now, to check QuantumLeap is persisting values, let's get started with our first query. This example shows the first 3
sampled filling
values from urn:ngsi-ld:Device:filling001
.
Note the use of the Fiware-Service
header which is the NGSI-v2 equivalent of NGSILD-Tenant
. These are required only
when data are pushed to Orion using such headers (in multitenancy scenarios). Failing to align these headers will result
in no data being returned.
curl -X GET \
'http://localhost:8668/v2/entities/urn:ngsi-ld:Device:filling001/attrs/filling?limit=3' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "filling",
"entityId": "urn:ngsi-ld:Device:filling001",
"index": ["2018-10-29T14:27:26", "2018-10-29T14:27:28", "2018-10-29T14:27:29"],
"values": [0.94, 0.87, 0.84]
}
}
This example shows the fourth, fifth and sixth sampled filling
values of urn:ngsi-ld:Device:filling001
.
curl -X GET \
'http://localhost:8668/v2/entities/urn:ngsi-ld:Device:filling001/attrs/filling?offset=3&limit=3' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "filling",
"entityId": "urn:ngsi-ld:Device:filling001",
"index": ["2018-10-29T14:23:53.804000", "2018-10-29T14:23:54.812000", "2018-10-29T14:24:00.849000"],
"values": [0.75, 0.63, 0.91]
}
}
This example shows the latest three sampled filling
values from urn:ngsi-ld:Device:filling001
.
curl -X GET \
'http://localhost:8668/v2/entities/urn:ngsi-ld:Device:filling001/attrs/filling?lastN=3' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "filling",
"entityId": "urn:ngsi-ld:Device:filling001",
"index": ["2018-10-29T15:03:45.113000", "2018-10-29T15:03:46.118000", "2018-10-29T15:03:47.111000"],
"values": [0.91, 0.67, 0.9]
}
}
This example shows last 3 total filling
values of urn:ngsi-ld:Device:filling001
over each minute.
You need QuantumLeap version >= 0.4.1. You can check your version with a simple GET like:
curl -X GET \
'http://localhost:8668/version' \
-H 'Accept: application/json'
curl -X GET \
'http://localhost:8668/v2/entities/urn:ngsi-ld:Device:filling001/attrs/filling?aggrMethod=count&aggrPeriod=minute&lastN=3' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "filling",
"entityId": "urn:ngsi-ld:Device:filling001",
"index": ["2018-10-29T15:03:00.000000"],
"values": [8]
}
}
This example shows minimum filling
values from urn:ngsi-ld:Device:filling001
over each minute.
You need QuantumLeap version >= 0.4.1. You can check your version with a simple GET like:
curl -X GET \ 'http://localhost:8668/version' \ -H 'Accept: application/json'
curl -X GET \
'http://localhost:8668/v2/entities/urn:ngsi-ld:Device:filling001/attrs/filling?aggrMethod=min&aggrPeriod=minute&lastN=3' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "filling",
"entityId": "urn:ngsi-ld:Device:filling001",
"index": ["2018-10-29T15:03:00.000000", "2018-10-29T15:04:00.000000", "2018-10-29T15:05:00.000000"],
"values": [0.63, 0.49, 0.03]
}
}
This example shows maximum filling
value of urn:ngsi-ld:Device:filling001
that occurred between from
2018-06-27T09:00:00
to 2018-06-30T23:59:59
.
curl -X GET \
'http://localhost:8668/v2/entities/urn:ngsi-ld:Device:filling001/attrs/filling?aggrMethod=max&fromDate=2018-06-27T09:00:00&toDate=2018-06-30T23:59:59' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "filling",
"entityId": "urn:ngsi-ld:Device:filling001",
"index": [],
"values": [0.94]
}
}
This example shows the latest heart rate sampled heartRate
values of animal that are within a 5 km radius from
52°31'04.8"N 13°21'25.2"E
(Tiergarten, Berlin, Germany). If you have turned on any device the animals will wander
around the Berlin Tiergarten and on the device monitor page, you should be able to see data for
urn:ngsi-ld:Device:cow001
and urn:ngsi-ld:Device:pig001
.
Note
Geographical queries are only available starting from version 0.5
of QuantumLeap which implements the full set of
queries detailed in the Geographical Queries section of the
NGSI v2 specification.
curl -X GET \
'http://localhost:8668/v2/types/Device/attrs/heartRate?lastN=4&georel=near;maxDistance:5000&geometry=point&coords=52.518,13.357' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"attrName": "heartRate",
"entities": [
{
"entityId": "urn:ngsi-ld:Device:cow001",
"index": ["2021-01-27T16:52:05.925+00:00", "2021-01-27T16:52:30.769+00:00"],
"values": [53, 50]
},
{
"entityId": "urn:ngsi-ld:Device:cow002",
"index": ["2021-01-27T16:50:50.792+00:00"],
"values": [53]
},
{
"entityId": "urn:ngsi-ld:Device:cow004",
"index": ["2021-01-27T16:51:55.798+00:00"],
"values": [51]
}
],
"entityType": "Device"
}
This example shows the latest four sampled filling
values of filling sensors that are inside a square of side 200 m
centered at 52°33'16.9"N 13°23'55.0"E
(Bornholmer Straße 65, Berlin, Germany). Even if you have turned on all the
filling sensors available on the device monitor page, you should only see data for urn:ngsi-ld:Device:filling001
.
Note
Geographical queries are only available starting from version 0.5
of QuantumLeap which implements the full set of
queries detailed in the Geographical Queries section of the
NGSI v2 specification.
curl -X GET \
'http://localhost:8668/v2/types/Device/attrs/heartRate?lastN=4&georel=coveredBy&geometry=polygon&coords=52.5537,13.3996;52.5557,13.3996;52.5557,13.3976;52.5537,13.3976;52.5537,13.3996' \
-H 'Accept: application/json' \
-H 'Fiware-Service: openiot'
{
"data": {
"attrName": "bpm",
"entities": [
{
"entityId": "urn:ngsi-ld:Device:cow001",
"index": [
"2018-12-13T17:08:56.041",
"2018-12-13T17:09:55.976",
"2018-12-13T17:10:55.907",
"2018-12-13T17:11:55.833"
],
"values": [65, 63, 63, 62]
}
],
"entityType": "Device"
}
}
CrateDB offers an HTTP Endpoint that can be
used to submit SQL queries. The endpoint is accessible under <servername:port>/_sql
.
SQL statements are sent as the body of POST requests in JSON format, where the SQL statement is the value of the stmt
attribute.
When to query CrateDB and when QuantumLeap?. As a rule of thumb, prefer working always with QuantumLeap for the following reasons:
- Your experience will be closer to FIWARE NGSI APIs like Orion's.
- Your application will not be tied to CrateDB's specifics nor QuantumLeap's implementation details, which could change and break your app.
- QuantumLeap can be easily extended to other backends and your app will get compatibility for free.
- If your deployment is distributed, you won't need to expose the ports of your database to the outside.
If your are sure your query is not supported by QuantumLeap, you may have to end up querying CrateDB, however, please open an issue in QuantumLeap's GitHub repository so the team is aware.
Another way to see if data are being persisted is to check if a table_schema
has been created. This can be done by
making a request to the CrateDB HTTP endpoint as shown:
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SHOW SCHEMAS"}'
{
"cols": ["schema_name"],
"rows": [["blob"], ["doc"], ["information_schema"], ["mtopeniot"], ["pg_catalog"], ["sys"]],
"rowcount": 6,
"duration": 20.3418
}
Schema names are formed with the mt
prefix followed by NGSILD-Tenant
header in lower case. The IoT Agent is
forwarding measurements from the dummy IoT devices, with the NGSILD-Tenant
header openiot
. These are being persisted
under the mtopeniot
schema.
If the mtopeniot
does not exist, then the subscription to QuantumLeap has not been set up correctly. Check that
the subscription exists, and has been configured to send data to the correct location.
QuantumLeap will persist data into separate tables within the CrateDB database based on the entity type. Table
names are formed with the et
prefix and the entity type name in lowercase.
curl -X POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SHOW TABLES"}'
{
"cols": ["table_schema", "table_name"],
"rows": [
["mtopeniot", "etFillingLevelSensor"],
["mtopeniot", "etdevice"]
],
"rowcount": 3,
"duration": 14.2762
}
The response shows that both Filling Sensor data and Animal Collar Device data are being persisted in the database.
The SQL statement uses ORDER BY
and LIMIT
clauses to sort the data. More details can be found under within the
CrateDB documentation
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SELECT * FROM mtopeniot.etFillingLevelSensor WHERE entity_id = '\''urn:ngsi-ld:Device:filling001'\'' ORDER BY time_index ASC LIMIT 3"}'
{
"cols": ["entity_id", "entity_type", "fiware_servicepath", "filling", "time_index"],
"rows": [
["urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 0.87, 1530262765000],
["urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 0.65, 1530262770000],
["urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 0.6, 1530262775000]
],
"rowcount": 3,
"duration": 21.8338
}
The SQL statement uses an OFFSET
clause to retrieve the required rows. More details can be found under within the
CrateDB documentation.
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SELECT * FROM mtopeniot.etFillingLevelSensor WHERE entity_id = '\''urn:ngsi-ld:Device:filling001'\'' order by time_index ASC LIMIT 3 OFFSET 3"}'
{
"cols": ["filling", "entity_id", "entity_type", "fiware_servicepath", "time_index"],
"rows": [
[0.75, "urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 1530262791452],
[0.63, "urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 1530262792469],
[0.5, "urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 1530262793472]
],
"rowcount": 3,
"duration": 54.215
}
The SQL statement uses an ORDER BY ... DESC
clause combined with a LIMIT
clause to retrieve the last N rows. More
details can be found under within the CrateDB
documentation.
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SELECT * FROM mtopeniot.etFillingLevelSensor WHERE entity_id = '\''urn:ngsi-ld:Device:filling001'\'' ORDER BY time_index DESC LIMIT 3"}'
{
"cols": ["filling", "entity_id", "entity_type", "fiware_servicepath", "time_index"],
"rows": [
[0.51, "urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 1530263896550],
[0.43, "urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 1530263894491],
[0.4, "urn:ngsi-ld:Device:filling001", "FillingLevelSensor", "/", 1530263892483]
],
"rowcount": 3,
"duration": 18.591
}
The SQL statement uses a SUM
function and GROUP BY
clause to retrieve the relevant data. CrateDB offers a range
of
Date-Time Functions
to truncate and convert the timestamps into data which can be grouped.
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SELECT DATE_FORMAT (DATE_TRUNC ('\''minute'\'', time_index)) AS minute, SUM (filling) AS sum FROM mtopeniot.etFillingLevelSensor WHERE entity_id = '\''urn:ngsi-ld:Device:filling001'\'' GROUP BY minute LIMIT 3"}'
{
"cols": ["minute", "sum"],
"rows": [
["2018-06-29T09:17:00.000000Z", 4.37],
["2018-06-29T09:34:00.000000Z", 6.23],
["2018-06-29T09:08:00.000000Z", 6.51],
["2018-06-29T09:40:00.000000Z", 3],
...etc
],
"rowcount": 42,
"duration": 22.9832
}
The SQL statement uses a MIN
function and GROUP BY
clause to retrieve the relevant data. CrateDB offers a range
of
Date-Time Functions
to truncate and convert the timestamps into data which can be grouped.
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SELECT DATE_FORMAT (DATE_TRUNC ('\''minute'\'', time_index)) AS minute, MIN (filling) AS min FROM mtopeniot.etFillingLevelSensor WHERE entity_id = '\''urn:ngsi-ld:Device:filling001'\'' GROUP BY minute"}'
{
"cols": ["minute", "min"],
"rows": [
["2018-06-29T09:34:00.000000Z", 0.5],
["2018-06-29T09:17:00.000000Z", 0.04],
["2018-06-29T09:40:00.000000Z", 0.33],
["2018-06-29T09:08:00.000000Z", 0.44],
...etc
],
"rowcount": 40,
"duration": 13.1854
}
The SQL statement uses a MAX
function and a WHERE
clause to retrieve the relevant data. CrateDB offers a range
of Aggregate Functions to
aggregate data in different ways.
curl -iX POST \
'http://localhost:4200/_sql' \
-H 'Content-Type: application/json' \
-d '{"stmt":"SELECT MAX(filling) AS max FROM mtopeniot.etFillingLevelSensor WHERE entity_id = '\''urn:ngsi-ld:Device:filling001'\'' and time_index >= '\''2018-06-27T09:00:00'\'' and time_index < '\''2018-06-30T23:59:59'\''"}'
{
"cols": ["max"],
"rows": [[1]],
"rowcount": 1,
"duration": 26.7215
}
Once the JSON response for a specified time series has been retrieved, displaying the raw data is of little use to an end user. It must be manipulated to be displayed in a bar chart, line graph or table listing. This is not within the domain of QuantumLeap as it not a graphical tool, but can be delegated to a mashup or dashboard component such as Wirecloud or Knowage.
It can also be retrieved and displayed using a third-party graphing tool appropriate to your coding environment - for
example chartjs. An example of this can be found within the history
controller in the
Git Repository.
The basic processing consists of two-step - retrieval and attribute mapping, sample code can be seen below:
function readCrateSensorfilling(id, aggMethod) {
return new Promise(function (resolve, reject) {
const sqlStatement =
"SELECT DATE_FORMAT (DATE_TRUNC ('minute', time_index)) AS minute, " +
aggMethod +
"(filling) AS " +
aggMethod +
" FROM mtopeniot.etFillingLevelSensor WHERE entity_id = 'urn:ngsi-ld:Device:" +
id +
"' GROUP BY minute ORDER BY minute";
const options = {
method: "POST",
url: crateUrl,
headers: { "Content-Type": "application/json" },
body: { stmt: sqlStatement },
json: true,
};
request(options, (error, response, body) => {
return error ? reject(error) : resolve(body);
});
});
}
function crateToTimeSeries(crateResponse, aggMethod, hexColor) {
const data = [];
const labels = [];
const color = [];
if (crateResponse && crateResponse.rows && crateResponse.rows.length > 0) {
_.forEach(crateResponse.rows, (element) => {
const date = moment(element[0]);
data.push({ t: date, y: element[1] });
labels.push(date.format("HH:mm"));
color.push(hexColor);
});
}
return {
labels,
data,
color,
};
}
The modified data is then passed to the frontend to be processed by the third-party graphing tool. The result is shown
here: http://localhost:3000/device/history/urn:ngsi-ld:Farm:001
.
CrateDB has been chosen as the time-series data sink for QuantumLeap, because, among
many other benefits, it integrates seamlessly with the
Grafana time series analytics tool. Grafana can be used to display the aggregated sensor data -
a full tutorial on building dashboards can be found here. The simplified
instructions below summarize how to connect and display a graph of the FillingLevelSensor filling
data.
The docker-compose
file has started an instance of the Grafana UI listening on port 3003
, so the login page can be
found at: http://localhost:3003/login
. The default username is admin
and the default password is admin
.
After logging in, a PostgreSQL datasource must be set up at http://localhost:3003/datasources
with the following
values:
- Name
CrateDB
- Host
crate-db:5432
- Database
mtopeniot
- User
crate
- SSL Mode
disable
Click on the Save and test button and make sure it says Database Connection OK.
To display a new dashboard, you can either click the + button and select Dashboard or go directly to
http://localhost:3003/dashboard/new?orgId=1
. Thereafter, click Add Query.
The following values in bold text need to be placed in the graphing wizard:
- Queries to CrateDB (the previously created Data Source).
- FROM etFillingLevelSensor.
- Time column time_index.
- Metric column entity_id.
- Select value column:filling.
Then click on ESC
on your keyboard and you will see a dashboard including the graph you created.
The click on the Add Panel
button and select Choose Visualisation
and pick Orchestra Cities Map
.
In the map view options set the following values:
- View: coordinates.
- Latitude: 52.5012.
- Longitude: 13.3682.
- Initial Zoom: 12.
In the base layer options set the following values:
- Layer: Open Street Map.
Click on Queries
tab on the left and set as follows:
- Format as: Table.
- FROM etFillingLevelSensor.
- Time column time_index.
- Metric column entity_id.
- Select value:
- column:filling alias:value.
- column:location alias:geojson.
- column:entity_type alias:type.
Within the Orchestra Cities Map
Click on Data Layer
tab on the left and set as follows:
- Markers
- Name: Feedstock Level
- Query: A
The final result can be seen below:
Want to learn how to add more complexity to your application by adding advanced features? You can find out by reading the other tutorials in this series
MIT © 2018-2025 FIWARE Foundation e.V.