I don't know that how to find data usage of app.
Asked
Active
Viewed 1,373 times
1 Answers
0
I found out that
iftop
is a nice option for data monitoring by specific interface.- You need to run the command with
sudo
. - Use the
-i
flag to choose specific interface.
Example:
sudo iftop -i <interface>
- You need to run the command with
2.You can use top
command to see all the running processes filtered by:
- PID - Process id.
- USER - user that running the process.
- %CPU - the cpu percent the app is using.
- You can view these topics for "larger" data usage apps on Ubuntu:
-
asilbek - if this answer is helpful for you, please accept her, if its not what you looking for or having issues with operating the "iftop" service please comment so we can solve that issue together. – johncli Oct 01 '20 at 19:00