aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/api/src/main/resources/definitions/StatisticsPorts.json
blob: e3ed71f168e3c436e0c4c29687e4e08af50c72a6 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
  "type": "object",
  "title": "all-port-statistics",
  "required": [
    "statistics"
  ],
  "properties": {
    "statistics": {
      "type": "array",
      "required": [
        "statistics"
      ],
      "xml": {
        "name": "statistics",
        "wrapped": true
      },
      "items": {
        "type": "object",
        "title": "statistics",
        "required": [
          "ports"
        ],
        "properties": {
          "deviceId": {
            "type": "string",
            "example": "of:0000000000000001"
          },
          "ports": {
            "type": "array",
            "xml": {
              "name": "ports",
              "wrapped": true
            },
            "items": {
              "type": "object",
              "title": "ports",
              "required": [
                "port",
                "packetsReceived",
                "packetsSent",
                "bytesReceived",
                "bytesSent",
                "packetsRxDropped",
                "packetsTxDropped",
                "packetsRxErrors",
                "packetsTxErrors",
                "durationSec"
              ],
              "properties": {
                "port": {
                  "type": "integer",
                  "format": "int64",
                  "example": 1
                },
                "packetsReceived": {
                  "type": "integer",
                  "format": "int64",
                  "example": 98
                },
                "packetsSent": {
                  "type": "integer",
                  "format": "int64",
                  "example": 98
                },
                "bytesReceived": {
                  "type": "integer",
                  "format": "int64",
                  "example": 9162
                },
                "bytesSent": {
                  "type": "integer",
                  "format": "int64",
                  "example": 9162
                },
                "packetsRxDropped": {
                  "type": "integer",
                  "format": "int64",
                  "example": 0
                },
                "packetsTxDropped": {
                  "type": "integer",
                  "format": "int64",
                  "example": 0
                },
                "packetsRxErrors": {
                  "type": "integer",
                  "format": "int64",
                  "example": 0
                },
                "packetsTxErrors": {
                  "type": "integer",
                  "format": "int64",
                  "example": 0
                },
                "durationSec": {
                  "type": "integer",
                  "format": "int64",
                  "example": 90
                }
              }
            }
          }
        }
      }
    }
  }
}