-
Notifications
You must be signed in to change notification settings - Fork 8
/
io.edgehog.devicemanager.SystemStatus.json
42 lines (42 loc) · 1.22 KB
/
io.edgehog.devicemanager.SystemStatus.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"interface_name": "io.edgehog.devicemanager.SystemStatus",
"version_major": 0,
"version_minor": 1,
"type": "datastream",
"ownership": "device",
"aggregation": "object",
"mappings": [
{
"endpoint": "/systemStatus/availMemoryBytes",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Available memory (Bytes)",
"database_retention_policy": "use_ttl",
"database_retention_ttl": 5184000
},
{
"endpoint": "/systemStatus/bootId",
"type": "string",
"explicit_timestamp": true,
"description": "UUID representing the Boot Id",
"database_retention_policy": "use_ttl",
"database_retention_ttl": 5184000
},
{
"endpoint": "/systemStatus/taskCount",
"type": "integer",
"explicit_timestamp": true,
"description": "Number of running tasks or processes",
"database_retention_policy": "use_ttl",
"database_retention_ttl": 5184000
},
{
"endpoint": "/systemStatus/uptimeMillis",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Get time in milliseconds since boot",
"database_retention_policy": "use_ttl",
"database_retention_ttl": 5184000
}
]
}