File tree Expand file tree Collapse file tree
components/schemas/containers/instances/snapshots Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,10 +14,45 @@ properties:
1414 - name
1515 - rx_bytes
1616 - tx_bytes
17+ - rx_packets
18+ - tx_packets
19+ - rx_dropped
20+ - tx_dropped
21+ - rx_errors
22+ - tx_errors
1723 properties :
1824 name :
1925 type : string
26+ description : Interface name (for example, i-pri-xxxx or i-pub-xxxx).
2027 rx_bytes :
2128 type : integer
29+ format : int64
30+ description : Total bytes received since interface start.
2231 tx_bytes :
2332 type : integer
33+ format : int64
34+ description : Total bytes transmitted since interface start.
35+ rx_packets :
36+ type : integer
37+ format : int64
38+ description : Total packets received since interface start.
39+ tx_packets :
40+ type : integer
41+ format : int64
42+ description : Total packets transmitted since interface start.
43+ rx_dropped :
44+ type : integer
45+ format : int64
46+ description : Total receive packets dropped since interface start.
47+ tx_dropped :
48+ type : integer
49+ format : int64
50+ description : Total transmit packets dropped since interface start.
51+ rx_errors :
52+ type : integer
53+ format : int64
54+ description : Total receive errors since interface start.
55+ tx_errors :
56+ type : integer
57+ format : int64
58+ description : Total transmit errors since interface start.
You can’t perform that action at this time.
0 commit comments