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

Added: snmptop utility. #142

Merged
merged 9 commits into from
Jul 15, 2017
Prev Previous commit
Next Next commit
Added: snmptop utility.
  • Loading branch information
strizhechenko committed Jul 15, 2017
commit 726d31ae9304983f74485407acec6b617596b92e
10 changes: 10 additions & 0 deletions utils/snmptop
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python

# coding: utf-8

from netutils_linux_monitoring.snmptop import SnmpTop

if __name__ == '__main__':
top = SnmpTop()
top.options = top.make_parser().parse_args()
top.run()