Comet
Minimal mode (STH-Comet ONLY)
Persist Time Series Context Data into MongoDB through Comet.
Sanity check for Comet
Once Comet is running, you can check the status by the following command:
Request:
ngsi version --host comet.local
Response:
{"version":"2.11.0"}
Subscribing to Context Changes
Create a subscription to notify Comet of changes in context and store it into MongoDB.
Request:
ngsi create \
--host "orion.local" \
--service openiot \
--path / \
subscription \
--description "Notify Comet of all context changes" \
--idPattern ".*" \
--uri "http://comet:8666/notify" \
--attrsFormat "legacy"
Response:
618ba41e0e94f32bac78451d
Create context data
Generate context data by running the following script:
#!/bin/bash
set -eu
for i in {0..9}
do
echo $i
ngsi upsert \
--host orion.local \
--service openiot \
--path / \
entity \
--keyValues \
--data "{\"id\":\"device001\", \"type\":\"device\", \"temperature\":${RANDOM}}"
sleep 1
done
List subscriptions
List subscriptions by running the following script:
Request:
ngsi list \
--host "orion.local" \
--service openiot \
--path / \
subscriptions \
--pretty
Response:
[
{
"id": "618ba41e0e94f32bac78451d",
"subject": {
"entities": [
{
"idPattern": ".*"
}
],
"condition": {}
},
"notification": {
"timesSent": 10,
"lastNotification": "2021-11-10T10:51:25.000Z",
"lastSuccess": "2021-11-10T10:51:25.000Z",
"lastSuccessCode": 200,
"onlyChangedAttrs": false,
"http": {
"url": "http://comet:8666/notify"
},
"attrsFormat": "legacy"
},
"status": "active"
}
]
Raw data consumption
Obtain the short-term history of a context entity attribute by filtering by number of last entries:
Request:
ngsi hget \
--host comet.local \
--service openiot \
--path / \
attr \
--lastN 3 \
--type device \
--id device001 \
--attr temperature \
--pretty
Response:
{
"type": "StructuredValue",
"value": [
{
"recvTime": "2021-11-10T10:51:23.552Z",
"attrType": "Number",
"attrValue": 13021
},
{
"recvTime": "2021-11-10T10:51:24.595Z",
"attrType": "Number",
"attrValue": 22143
},
{
"recvTime": "2021-11-10T10:51:25.636Z",
"attrType": "Number",
"attrValue": 21341
}
]
}
Aggregated data consumption by aggregation method and resolution
List the sum of values of a context entity attribute by filtering by aggrMethod, aggrPeriod:
Request:
ngsi hget \
--host comet.local \
--service openiot \
--path / \
attr \
--aggrMethod sum \
--aggrPeriod day \
--type device \
--id device001 \
--attr temperature \
--pretty
Response:
{
"type": "StructuredValue",
"value": [
{
"_id": {
"attrName": "temperature",
"origin": "2021-11-01T00:00:00.000Z",
"resolution": "day"
},
"points": [
{
"offset": 10,
"samples": 10,
"sum": 170416
}
]
}
]
}
Examples
Look at examples here.
Formal mode (Cygnus + STH-Comet)
Persist Time Series Context Data into MongoDB through Cygnus.
Sanity check for Cygnus and comet
Once Cygnus is running, you can check the status by the following command:
Request:
ngsi version --host cygnus.local --pretty
Response:
{
"success": "true",
"version": "3.8.0.f62eff701c01df1f708e0c9484e48e7b9bd9b1ed"
}
Once Comet is running, you can check the status by the following command:
Request:
ngsi version --host comet.local
Response:
{"version":"2.8.0-next"}
Subscribing to Context Changes
Create a subscription to notify Cygnus of changes in context and store it into MongoDB.
Request:
ngsi create \
--host orion.local \
--service openiot \
--path / \
subscription \
--description "Notify Cygnus of all context changes and store it into MongoDB" \
--idPattern ".*" \
--uri "http://cygnus:5051/notify"
Response:
618bb2ba926e5a749721fc6b
Create context data
Generate context data by running the following script:
#!/bin/bash
set -eu
for i in {0..9}
do
echo $i
ngsi upsert \
--host orion.local \
--service openiot \
--path / \
entity \
--keyValues \
--data "{\"id\":\"device001\", \"type\":\"device\", \"temperature\":${RANDOM}}"
sleep 1
done
List subscriptions
List subscriptions by running the following script:
Request:
ngsi list \
--host "orion.local" \
--service openiot \
--path / \
subscriptions \
--pretty
Response:
[
{
"id": "618bb2ba926e5a749721fc6b",
"subject": {
"entities": [
{
"idPattern": ".*"
}
],
"condition": {}
},
"notification": {
"timesSent": 10,
"lastNotification": "2021-11-10T11:55:42.000Z",
"lastSuccess": "2021-11-10T11:55:42.000Z",
"lastSuccessCode": 200,
"onlyChangedAttrs": false,
"http": {
"url": "http://cygnus:5051/notify"
},
"attrsFormat": "normalized"
},
"status": "active"
}
]
Raw data consumption
Obtain the short-term history of a context entity attribute by filtering by number of last entries:
Request:
ngsi hget \
--host comet.local \
--service openiot \
--path / \
attr \
--lastN 3 \
--type device \
--id device001 \
--attr temperature \
--pretty
Response:
{
"type": "StructuredValue",
"value": [
{
"attrType": "Number",
"attrValue": 3876,
"recvTime": "2021-11-10T11:55:40.651Z"
},
{
"attrType": "Number",
"attrValue": 1629,
"recvTime": "2021-11-10T11:55:41.690Z"
},
{
"attrType": "Number",
"attrValue": 28278,
"recvTime": "2021-11-10T11:55:42.741Z"
}
]
}
Aggregated data consumption by aggregation method and resolution
List the sum of values of a context entity attribute by filtering by aggrMethod, aggrPeriod:
Request:
ngsi hget \
--host comet.local \
--service openiot \
--path / \
attr \
--aggrMethod sum \
--aggrPeriod day \
--type device \
--id device001 \
--attr temperature \
--pretty
Response:
{
"type": "StructuredValue",
"value": [
{
"_id": {
"attrName": "temperature",
"origin": "2021-11-01T00:00:00.000Z",
"resolution": "day"
},
"points": [
{
"offset": 10,
"samples": 10,
"sum": 192993
}
]
}
]
}
Examples
Look at examples here.