NetworkMetricsPost.json
1.12 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
{
"type": "object",
"title": "networks",
"required": [
"networks"
],
"properties": {
"networks": {
"type": "array",
"xml": {
"name": "networks",
"wrapped": true
},
"items": {
"type": "object",
"title": "networks",
"required": [
"resourceName",
"incomingBytes",
"outgoingBytes",
"incomingPackets",
"outgoingPackets"
],
"properties": {
"resourceName": {
"type": "string",
"example": "eth0"
},
"incomingBytes": {
"type": "integer",
"format": "int64",
"example": "1024"
},
"outgoingBytes": {
"type": "integer",
"format": "int64",
"example": "1024"
},
"incomingPackets": {
"type": "integer",
"format": "int64",
"example": "1000"
},
"outgoingPackets": {
"type": "integer",
"format": "int64",
"example": "2000"
}
}
}
}
}
}