rails_log_parser 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c63fac78d3fda42cab291bcd30cc7abb739ed75ca82de98a72efb0587fd35954
4
- data.tar.gz: d04eb23a0d4a37af92ce87a74ea900ef6b35ecb502e612ea559a5158afa76baf
3
+ metadata.gz: 96d17b92a0e47f95f636d1f1006e5a6e32573c08d22c26269a80b63f8fc379c5
4
+ data.tar.gz: 3693d726cd73d53479917370c967fb2d028a5ad9ef4cc27442e413eabb84f88c
5
5
  SHA512:
6
- metadata.gz: a5de5ab1e2853550540f58538743c1394332fd32895a061675cf4d39c0efda4a21c5d42a13045a9e78477350054403423b1b38264c2920e576aceb1658ac594f
7
- data.tar.gz: 614f54e398d1f113cdd7345b05b51e402795dc1e2cc363ba9e1209f828cc3d928a008a6fd30ea7684382b2eb8affe59727f5d808fe8fb49df9bacd53a30e5ef2
6
+ metadata.gz: 389480dd2c6b6f6dd8c732b7bc07c458df3190a7fc1f56253adb8a780a1717efebd17947c5e4c8050b912f6838487a01c65737b45feb51867ce4830beeda5057
7
+ data.tar.gz: f834c008d3a24a589a51f8ba5cfa70b3bcdfb372987df5875d30a0402848cde4184531dd4fb5d9e82f5979d284c23d53f6bb090ab276f3c221719f0563d0d593
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.8)
4
+ rails_log_parser (0.0.9)
5
5
  enumerize (~> 2.4)
6
6
  json (>= 2.0)
7
7
 
data/README.md CHANGED
@@ -49,6 +49,11 @@ print parser.summary(last_minutes: 22) # print summary for the last 22
49
49
 
50
50
  ## Changelog
51
51
 
52
+ ### 0.0.9
53
+
54
+ * Message not parseable lines only once a day
55
+ * Delete old heuristic stat files automaticly
56
+
52
57
  ### 0.0.8
53
58
 
54
59
  * Adding `ActionController::UnfilteredParameters` as known exceptions
@@ -49,9 +49,18 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
49
49
  RailsLogParser::Action::KNOWN_EXCEPTIONS.each_key do |exception|
50
50
  @stats[:known_exceptions][exception.to_sym] = actions.count { |action| action.known_exception?(exception) }
51
51
  end
52
+
53
+ delete_old_stats
52
54
  File.write(heuristic_file_path, @stats.to_json)
53
55
  end
54
56
 
57
+ def delete_old_stats
58
+ last_20_days = (0..19).map { |i| (Date.today - i) }.map { |date| File.join(path, "heuristic_stats_#{date}.json") }
59
+ Dir[File.join(path, 'heuristic_stats_*.json')].reject { |file| last_20_days.include?(file) }.each do |file|
60
+ File.unlink(file)
61
+ end
62
+ end
63
+
55
64
  def load_stats
56
65
  @stats = JSON.parse(File.read(heuristic_file_path), symbolize_names: true) if File.file?(heuristic_file_path)
57
66
  @stats ||= {}
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'json'
4
+
5
+ class RailsLogParser::NotParseableLines
6
+ attr_reader :lines
7
+
8
+ def initialize
9
+ @lines = []
10
+ @path = File.join(File.dirname(RailsLogParser::Parser.log_path), 'not_parseable_lines.json')
11
+ load_file
12
+ end
13
+
14
+ def push(line)
15
+ @lines.push(line) unless today_lines.include?(line)
16
+ end
17
+
18
+ def save
19
+ @stats[Date.today.to_s] = today_lines + lines
20
+
21
+ last_7_days = (0..6).map { |i| (Date.today - i) }.map(&:to_s)
22
+ @stats.each_key do |key|
23
+ @stats.delete(key) unless last_7_days.include?(key)
24
+ end
25
+ File.write(@path, @stats.to_json)
26
+ end
27
+
28
+ protected
29
+
30
+ def today_lines
31
+ @stats[Date.today.to_s] || []
32
+ end
33
+
34
+ def load_file
35
+ @stats = JSON.parse(File.read(@path))
36
+ @stats ||= {}
37
+ rescue JSON::ParserError, Errno::ENOENT
38
+ @stats = {}
39
+ end
40
+ end
@@ -23,7 +23,7 @@ class RailsLogParser::Parser
23
23
 
24
24
  def initialize
25
25
  @actions = {}
26
- @not_parseable_lines = []
26
+ @not_parseable_lines = RailsLogParser::NotParseableLines.new
27
27
  @heuristic = nil
28
28
  end
29
29
 
@@ -39,10 +39,11 @@ class RailsLogParser::Parser
39
39
  relevant = relevant.select { |a| a.after?(from) }
40
40
  end
41
41
  summary_output = []
42
- if @not_parseable_lines.present?
42
+ if @not_parseable_lines.lines.present?
43
43
  summary_output.push('Not parseable lines:')
44
- summary_output += @not_parseable_lines.map { |line| " #{line}" }
44
+ summary_output += @not_parseable_lines.lines.map { |line| " #{line}" }
45
45
  summary_output.push("\n\n")
46
+ @not_parseable_lines.save
46
47
  end
47
48
 
48
49
  %i[warn error fatal].each do |severity|
@@ -10,5 +10,6 @@ require_relative 'rails_log_parser/parser'
10
10
  require_relative 'rails_log_parser/action'
11
11
  require_relative 'rails_log_parser/line'
12
12
  require_relative 'rails_log_parser/heuristic_stat_file'
13
+ require_relative 'rails_log_parser/not_parseable_lines'
13
14
 
14
15
  require 'rails_log_parser/railtie' if defined?(Rails::Railtie)
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'rails_log_parser'
5
- spec.version = '0.0.8'
5
+ spec.version = '0.0.9'
6
6
  spec.authors = ['Georg Limbach']
7
7
  spec.email = ['georg.limbach@lichtbit.com']
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_log_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Limbach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enumerize
@@ -71,6 +71,7 @@ files:
71
71
  - lib/rails_log_parser/action.rb
72
72
  - lib/rails_log_parser/heuristic_stat_file.rb
73
73
  - lib/rails_log_parser/line.rb
74
+ - lib/rails_log_parser/not_parseable_lines.rb
74
75
  - lib/rails_log_parser/parser.rb
75
76
  - lib/rails_log_parser/railtie.rb
76
77
  - lib/rails_log_parser/tasks.rb