Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to select the network interface? #81

Open
Ali-Flt opened this issue Aug 12, 2023 · 1 comment
Open

How to select the network interface? #81

Ali-Flt opened this issue Aug 12, 2023 · 1 comment

Comments

@Ali-Flt
Copy link

Ali-Flt commented Aug 12, 2023

Namizun is showing my network usage inaccurately because I believe it is showing the usage of all network interfaces whereas a lot of it is related to the virtual network interfaces such as the ones created by docker.

Can you add a feature to select which interface I want to monitor the network usage of?

@Ali-Flt
Copy link
Author

Ali-Flt commented Aug 12, 2023

I did this for a workaround. My network interface name is eno4. So I changed the network.py file to this:

from psutil import net_io_counters
from namizun_core import database

def _net_io_counters():
    return net_io_counters(pernic=True)['eno4']


def get_size(only_bytes):
    flag = ''
    if only_bytes < 0:
        flag = '-'
        only_bytes *= -1
    for unit in ['', 'K', 'M', 'G', 'T', 'P']:
        if only_bytes < 1024:
            return f"{flag}{only_bytes:.2f}{unit}B"
        only_bytes /= 1024


def get_network_io():
    io = _net_io_counters()
    return io.bytes_sent + database.get_parameter('upload_amount_synchronizer') \
        , io.bytes_recv + database.get_parameter('download_amount_synchronizer')


def get_system_network_io():
    io = _net_io_counters()
    return io.bytes_sent, io.bytes_recv


def get_system_upload():
    return _net_io_counters().bytes_sent


def get_system_download():
    return _net_io_counters().bytes_recv

Note that you may need to flush the redis DB afterwards.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant