class DstatParser

Public Class Methods

parse(file, column) click to toggle source
# File lib/barrage/dstat_parser.rb, line 4
def self.parse(file, column)
  time = Array.new
  values = Array.new

  start_parsing = false
  count = 0
  CSV.foreach(file) do |row|

    if start_parsing == true then
      #puts "#{row[0]} sys #{row[column]}"
      time.push(count - 7)
      values.push(row[column])
    end

    if start_parsing == false && count == 7
      start_parsing = true
    end

    count += 1
  end

  return time, values
end