Skip to content

Commit 35cf16f

Browse files
authored
update network snapshot to support errors and dropped (#801)
1 parent 3949eec commit 35cf16f

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

components/schemas/containers/instances/snapshots/NetworkSnapshot.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)