No stats for aliased devices.

This commit is contained in:
Matthew Kent 2009-07-28 23:18:11 -07:00
parent 1a9eaa800f
commit 807aa955c1
1 changed files with 24 additions and 23 deletions

View File

@ -37,8 +37,8 @@ iflist.each do |ifname|
" MTU:" + ifconfig.mtu.to_s +
" Metric:" + ifconfig.metric.to_s
if (!ifname.include?(":"))
ifstat = sigar.net_interface_stat(ifname)
puts "\t" +
"RX packets:" + ifstat.rx_packets.to_s +
" errors:" + ifstat.rx_errors.to_s +
@ -64,4 +64,5 @@ iflist.each do |ifname|
" " +
"TX bytes:" + tx_bytes.to_s +
" (" + Sigar.format_size(tx_bytes) + ")" + "\n";
end
end