V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  yiyiwa  ›  全部回复第 17 页 / 共 17 页
回复总数  321
1 ... 8  9  10  11  12  13  14  15  16  17  
2015-04-26 15:41:10 +08:00
回复了 immike 创建的主题 Linux 怎样监控 Esxi 中的 esxtop 中的"GAVG/cmd"参数?
你这个参数我没监控过, 我现在有的监控硬盘的SMART状态, 因为我的ESXi是组装的服务器,然后有的信息没办法查看, 于是用RUBY写了一个脚本. 定时SSH到ESXi 查询相关信息,脚本如下:

#!/usr/bin/ruby
require 'net/ssh'
require 'net/telnet'
#0 ok; 1 warning; 2 critical; 3 unknown

user, pass = "root", "123"

def test(ip,user,pass)
begin
Net::SSH.start(ip, user, :password => pass ) { |ssh|
result = ssh.exec!('for i in `esxcli storage core device list | grep "Local ATA Disk" | sed "s/.*(\|)//g"`; do esxcli storage core device smart get -d "$i" | grep Health ; done')
}
rescue
end
end

status = test('192.168.1.22',user,pass)

if status.scan("OK").count == status.scan("Health").count
puts "Disk Smart OK"
exit 0
else
puts "Disk Smart Fail"
exit 2
end
1 ... 8  9  10  11  12  13  14  15  16  17  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3945 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 04:14 · PVG 12:14 · LAX 20:14 · JFK 23:14
Developed with CodeLauncher
♥ Do have faith in what you're doing.