getproc.pl
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #!/usr/bin/perl
  2. #-----------------------------------------------
  3. # Return processor usage, for a specifig time range (5sec, 1min, 15min)
  4. #
  5. # Author: Dimitrios Stergiou <dste@intranet.gr> , 26/10/00
  6. # Version : 1.0
  7. #
  8. # Usage: ./getproc.pl cisco_hostname time_range
  9. # time_range can be:
  10. #            3 (The overall CPU busy percentage in the last 5 secs)
  11. #            4 (The overall CPU busy percentage in the last 1 mins)
  12. #            5 (The overall CPU busy percentage in the last 15 mins)
  13. #
  14. # 1.0 Initial version, basic functionality
  15. #-----------------------------------------------
  16. # Import libraries
  17. use lib "/usr/local/mrtg/lib/mrtg2";
  18. use MRTG_lib "2.090006";
  19. use SNMP_Session "0.77";
  20. use BER "0.77";
  21. use SNMP_util "0.77";
  22. use locales_mrtg "0.07";
  23. # Query public community on router, return proc usage for specific time range
  24. @command = snmpget($ARGV[0], "enterprises.9.9.109.1.1.1.1.$ARGV[1].1");
  25. print @command[0];