-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathio.edgehog.devicemanager.apps.stats.ContainerNetworks.json
More file actions
74 lines (74 loc) · 2.35 KB
/
io.edgehog.devicemanager.apps.stats.ContainerNetworks.json
File metadata and controls
74 lines (74 loc) · 2.35 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"interface_name": "io.edgehog.devicemanager.apps.stats.ContainerNetworks",
"version_major": 0,
"version_minor": 1,
"type": "datastream",
"aggregation": "object",
"ownership": "device",
"doc": "Network statistics for the container per interface.",
"mappings": [
{
"endpoint": "/%{container_id}/interface",
"type": "string",
"explicit_timestamp": true,
"description": "Network interface name",
"doc": "Name of the network for which the statistics are provided."
},
{
"endpoint": "/%{container_id}/rxBytes",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Bytes received.",
"doc": "Total number of bytes received on the interface."
},
{
"endpoint": "/%{container_id}/rxPackets",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Packets received.",
"doc": "Total number of packets successfully received on the interface."
},
{
"endpoint": "/%{container_id}/rxDropped",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Incoming packets dropped.",
"doc": "Total number of incoming packets that were dropped."
},
{
"endpoint": "/%{container_id}/rxErrors",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Received errors.",
"doc": "Total number of errors that occurred while receiving."
},
{
"endpoint": "/%{container_id}/txBytes",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Bytes sent.",
"doc": "Total number of bytes transmitted on the interface."
},
{
"endpoint": "/%{container_id}/txPackets",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Packets sent.",
"doc": "Total number of packets successfully transmitted on the interface."
},
{
"endpoint": "/%{container_id}/txErrors",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Sent errors.",
"doc": "Total number of errors that occurred while transmitting."
},
{
"endpoint": "/%{container_id}/txDropped",
"type": "longinteger",
"explicit_timestamp": true,
"description": "Outgoing packets dropped.",
"doc": "Total number of outgoing packets that were dropped."
}
]
}