Class: Appstats::LogCollector

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
lib/appstats/log_collector.rb

Constant Summary collapse

@@downloaded_log_directory =
nil

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.download_remote_files(raw_logins) ⇒ Object



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/appstats/log_collector.rb', line 92

def self.download_remote_files(raw_logins)
  all = Appstats.rails3? ? LogCollector.where("status = 'unprocessed'").all : LogCollector.find(:all,:conditions => "status = 'unprocessed'")
  if all.empty?
    Appstats.log(:info,"No remote logs to download.")
    return 0
  end

  normalized_logins = normalize_logins(raw_logins)
  count = 0
  
  Appstats.log(:info,"About to download #{all.size} file(s).")
  all.each do |log_collector|
    host = log_collector.host
    user = normalized_logins[host][:user]
    password = normalized_logins[host][:password]
    begin
      Net::SCP.start( host, user, :password => password ) do |scp|
        scp.download!( log_collector.filename, log_collector.calculated_local_filename )
      end
    rescue Exception => e
      Appstats.log(:error,"Something bad occurred during Appstats::LogCollector#download_remote_files")
      Appstats.log(:error,e.message)
    end
    if File.exists?(log_collector.calculated_local_filename)
      log_collector.local_filename = log_collector.calculated_local_filename
      log_collector.status = 'downloaded'
      Appstats.log(:info,"  - #{user}@#{host}:#{log_collector.filename} > #{log_collector.local_filename}")
      count += 1  
    else
      Appstats.log(:error, "File #{log_collector.calculated_local_filename} did not download.")
      log_collector.status = 'failed_download'
    end
    log_collector.save
  end
  Appstats.log(:info,"Downloaded #{count} file(s).")
  count
end

.downloaded_log_directoryObject



44
45
46
# File 'lib/appstats/log_collector.rb', line 44

def self.downloaded_log_directory
  @@downloaded_log_directory
end

.downloaded_log_directory=(value) ⇒ Object



40
41
42
# File 'lib/appstats/log_collector.rb', line 40

def self.downloaded_log_directory=(value)
  @@downloaded_log_directory = value
end

.find_remote_files(remote_login, path, log_template) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/appstats/log_collector.rb', line 53

def self.find_remote_files(,path,log_template)
  begin
    Appstats.log(:info,"Looking for logs in [#{[:user]}@#{[:host]}:#{path}] labelled [#{log_template}]")
    Net::SSH.start([:host], [:user], :password => [:password] ) do |ssh|
      raw_files = ssh.exec!("cd #{path} && ls -tr | grep #{log_template} | grep -v __processed__") 
      all_files = raw_files.nil? ? [] : raw_files.split
      load_remote_files(,path,all_files)
    end
  rescue Exception => e
    Appstats.log(:error,"Something bad occurred during Appstats::LogCollector#find_remote_files")
    Appstats.log(:error,e.message)
    0
  end
end

.load_remote_files(remote_login, path, all_files) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/appstats/log_collector.rb', line 68

def self.load_remote_files(,path,all_files)
  if all_files.empty?
    Appstats.log(:info,"No remote logs to load.")
    return 0
  end

  count = 0
  Appstats.log(:info, "About to analyze #{all_files.size} file(s).")
  all_files.each do |log_name|
    filename = File.join(path,log_name)
    if !log_name.match("(.*)#{Time.now.strftime('%Y-%m-%d')}.log").nil?
      Appstats.log(:info, "  - IGNORING CURRENT LOG FILE #{[:user]}@#{[:host]}:#{filename}")
    elsif LogCollector.find_by_host_and_filename([:host],filename).nil?
      log_collector = LogCollector.create(:host => [:host], :filename => filename, :status => "unprocessed")
      Appstats.log(:info, "  - #{[:user]}@#{[:host]}:#{filename}")
      count += 1
    else
      Appstats.log(:info, "  - ALREADY LOADED #{[:user]}@#{[:host]}:#{filename}")
    end
  end
  Appstats.log(:info, "Loaded #{count} file(s).")
  count
end

.normalize_logins(raw_logins) ⇒ Object



196
197
198
199
200
201
202
# File 'lib/appstats/log_collector.rb', line 196

def self.normalize_logins(raw_logins)
  normalized_logins = {}
  raw_logins.each do ||
    normalized_logins[[:host]] = 
  end
  normalized_logins
end

.process_local_filesObject



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/appstats/log_collector.rb', line 130

def self.process_local_files
  all = Appstats.rails3? ? LogCollector.where("status = 'downloaded'").all : LogCollector.find(:all, :conditions => "status = 'downloaded'")
  if all.empty?
    Appstats.log(:info,"No local logs to process.")
    return 0
  end
  Appstats.log(:info,"About to process #{all.size} file(s).")
  count = 0
  total_entries = 0
  all.each do |log_collector|
    current_entries = 0
    begin
      File.open(log_collector.local_filename,"r").readlines.each do |line|
        entry = Entry.create_from_logger_string(line.strip)
        entry.log_collector = log_collector
        entry.save
        current_entries += 1
        total_entries += 1
      end
      Appstats.log(:info,"  - #{current_entries} entr(ies) in #{log_collector.local_filename}.")
      log_collector.status = "processed"
      log_collector.save
      count += 1
    rescue Exception => e
      Appstats.log(:error,"Something bad occurred during Appstats::LogCollector#process_local_files")
      Appstats.log(:error,e.message)
    end
  end
  Appstats.log(:info,"Processed #{count} file(s) with #{total_entries} entr(ies).")
  count
end

.remove_remote_files(raw_logins) ⇒ Object



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/appstats/log_collector.rb', line 162

def self.remove_remote_files(raw_logins)
  all = Appstats.rails3? ? LogCollector.where("status = 'processed'").all : LogCollector.find(:all,:conditions => "status = 'processed'")
  if all.empty?
    Appstats.log(:info,"No remote logs to remove.")
    return 0
  end
  
  normalized_logins = normalize_logins(raw_logins)
  
  count = 0
  Appstats.log(:info,"About to remove #{all.size} remote file(s) from the processing queue.")
  all.each do |log_collector|
    host = log_collector.host
    
    if normalized_logins[host].nil?
      Appstats.log(:info,"  - Missing host login details [#{host}], unable to remove #{log_collector.processed_filename}")
      next
    end
    
    user = normalized_logins[host][:user]
    password = normalized_logins[host][:password]

    Net::SSH.start(host, user, :password => password ) do |ssh|
     ssh.exec!("mv #{log_collector.filename} #{log_collector.processed_filename}")
     Appstats.log(:info,"  - #{user}@#{host}:#{log_collector.processed_filename}")
     log_collector.status = "destroyed"
     log_collector.save
     count += 1
    end
  end
  Appstats.log(:info,"Removed #{count} remote file(s).")
  count
end

.should_process(last_time) ⇒ Object



48
49
50
51
# File 'lib/appstats/log_collector.rb', line 48

def self.should_process(last_time)
  return true if last_time.nil?
  Time.now.day > last_time.day
end

Instance Method Details

#calculated_local_filenameObject



14
15
16
17
18
19
20
# File 'lib/appstats/log_collector.rb', line 14

def calculated_local_filename
  if Appstats::LogCollector.downloaded_log_directory.nil?
    File.expand_path("#{File.dirname(__FILE__)}/../../log/appstats_remote_log_#{id}.log")
  else
    File.expand_path("#{Appstats::LogCollector.downloaded_log_directory}/appstats_remote_log_#{id}.log")
  end
end

#processed_filenameObject



22
23
24
25
26
27
28
# File 'lib/appstats/log_collector.rb', line 22

def processed_filename
  return filename if filename.nil? || filename == ''
  m = filename.match(/(.*\/)(.*)/)
  prefix = "__processed__"
  return "#{prefix}#{filename}" if m.nil?
  "#{m[1]}#{prefix}#{m[2]}"
end

#unprocess_entriesObject



30
31
32
33
34
35
36
37
38
# File 'lib/appstats/log_collector.rb', line 30

def unprocess_entries
  return false unless ["processed","destroyed"].include?(status)
  entries.each do |entry|
    entry.destroy
  end
  self.status = "downloaded"
  save
  true
end