Why the traffic difference between NA And Cacti
Posted: Mon Jan 23, 2017 9:28 pm
Moderator Edit: This thread has been split from another - https://support.nagios.com/forum/viewto ... 32&t=38296
In the future, please create a new thread and link to the old one instead of adding on.
Hi Nagios Support,
First of all, Thank you for all the effort on building this product, I really like it.
Seem like someone on the UI team does not know the difference between Bytes/sec and bit/s (bps). They are really two different things. I think you should really escalate this to the Engineering team and fix the web interface labels ASAP. For a product aiming networking teams this is kind of lame :- )
When you look at the code you can really find out that the developers really meant bps and not Bytes/sec:
/usr/local/nagiosna/bin/netflow_checks.py
106 if metric == 'flows':
107 index = 0
108 elif metric == 'bytes':
109 index = 1
110 elif metric == 'packets':
111 index = 2
112 elif metric == 'bps':
113 index = 3
114 elif metric == 'pps':
115 index = 4
116 elif metric == 'bpp':
117 index = 5
118 else:
119 index = 0
Please fix and ask a Network Engineer to check the UI before releasing it.
Regards,
Maurice
In the future, please create a new thread and link to the old one instead of adding on.
Hi Nagios Support,
First of all, Thank you for all the effort on building this product, I really like it.
Seem like someone on the UI team does not know the difference between Bytes/sec and bit/s (bps). They are really two different things. I think you should really escalate this to the Engineering team and fix the web interface labels ASAP. For a product aiming networking teams this is kind of lame :- )
When you look at the code you can really find out that the developers really meant bps and not Bytes/sec:
/usr/local/nagiosna/bin/netflow_checks.py
106 if metric == 'flows':
107 index = 0
108 elif metric == 'bytes':
109 index = 1
110 elif metric == 'packets':
111 index = 2
112 elif metric == 'bps':
113 index = 3
114 elif metric == 'pps':
115 index = 4
116 elif metric == 'bpp':
117 index = 5
118 else:
119 index = 0
Please fix and ask a Network Engineer to check the UI before releasing it.
Regards,
Maurice