Skip to content

Commit

Permalink
Update description as network traffic is not bytes/s but bytes per in…
Browse files Browse the repository at this point in the history
…terval
  • Loading branch information
sonicaj committed Aug 28, 2024
1 parent 41304c3 commit 245ba6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/middlewared/middlewared/plugins/apps/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class AppStatsEventSource(EventSource):
Dict(
'interface_stats',
Str('interface_name', description='Name of the interface use by the app'),
Int('rx_bytes', description='Received bytes/s by an interface'),
Int('tx_bytes', description='Transmitted bytes/s by an interface')
Int('rx_bytes', description='Received bytes per interval by an interface'),
Int('tx_bytes', description='Transmitted bytes per interval by an interface')
),
]
),
Expand Down

0 comments on commit 245ba6c

Please sign in to comment.