获取DM7000H存储卷性能数据
需求:每5分钟查询获取DM7000H存储172.20.52.30、172.20.52.40卷性能数据,并保存到文件中,每天保存一个文件。 #####优化前脚本内容##### cat get_storage_stats.sh #!/usr/bin/expect set LOG_FILE “/app/log_storage/[exec date +%Y%m%d]_storage_stats.log” log_file -a $LOG_FILE spawn ssh admin@172.20.52.30 expect “Password:” send “V0iCe#Len0325\r” expect “*>” send “statistics volume show -sort-key instance_name -iterations 1\r” expect “*>” send “exit\r” spawn ssh admin@172.20.52.40 expect “Password:” send “V0iCe#Len0425\r” expect “*>” send “statistics volume show -sort-key instance_name -iterations 1\r” expect “*>” send “exit\r” … Read more