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

Should handle Counter64 metrics to get correct usage of high-speed network #1

Open
datacrat opened this issue Apr 18, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@datacrat
Copy link
Owner

Currently, nwuCollect.sh polls ifInOctets/ifOutOctets, which are Counter32 and easily be circulated in high speed networks with long poll intervals.
Need to collect and calculate ifHCInOctets/ifHCOutOctets.

Counter32: 0..4294967295(2^32-1)

  • 10Mbps: circulated in 3,436 sec
  • 100Mbps: circulated in 344 sec
  • 1Gbps: circulated in 34 sec

Counter64: 0..18446744073709551615(2^64-1)

  • 1Gbps: circulated in 147,573,952,590 sec
  • 10Gbps: circulated in 14,757,395,259 sec
  • 100Gbps: circulated in 1,475,739.526 sec (~17,000 days)
@datacrat datacrat self-assigned this Apr 18, 2020
@datacrat datacrat added the enhancement New feature or request label Apr 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant