rails_log_parser 0.0.6 → 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: 2f608985d7c53f5ac09850df6c94d63437c5c1ecec18390072e83b4751a57e16
4
- data.tar.gz: 68606ff5cea0948ad95cdd6f0ae583374b73654c013e95807dc0242070291879
3
+ metadata.gz: 96d17b92a0e47f95f636d1f1006e5a6e32573c08d22c26269a80b63f8fc379c5
4
+ data.tar.gz: 3693d726cd73d53479917370c967fb2d028a5ad9ef4cc27442e413eabb84f88c
5
5
  SHA512:
6
- metadata.gz: 7351dc20aa2fc84268825e955ef6b8ffe924571013c27e6b0728555442aa205c10600a5266c153387109fb9fe7f6bc03d2657fecc50956622a2ac7eb9e6339bc
7
- data.tar.gz: eb0689bc7193fc130aae3cc40dd68ad5fc865add71696bd9a044442ef3094e61a26966f0044967cf8939365f0b03cf64d6b9b96ee5dc559236f0c80eb5770634
6
+ metadata.gz: 389480dd2c6b6f6dd8c732b7bc07c458df3190a7fc1f56253adb8a780a1717efebd17947c5e4c8050b912f6838487a01c65737b45feb51867ce4830beeda5057
7
+ data.tar.gz: f834c008d3a24a589a51f8ba5cfa70b3bcdfb372987df5875d30a0402848cde4184531dd4fb5d9e82f5979d284c23d53f6bb090ab276f3c221719f0563d0d593
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.6)
4
+ rails_log_parser (0.0.9)
5
5
  enumerize (~> 2.4)
6
- json
6
+ json (>= 2.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (6.1.4.1)
11
+ activesupport (6.1.4.4)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 1.6, < 2)
14
14
  minitest (>= 5.1)
@@ -16,12 +16,12 @@ GEM
16
16
  zeitwerk (~> 2.3)
17
17
  concurrent-ruby (1.1.9)
18
18
  diff-lcs (1.4.4)
19
- enumerize (2.4.0)
19
+ enumerize (2.5.0)
20
20
  activesupport (>= 3.2)
21
21
  i18n (1.8.11)
22
22
  concurrent-ruby (~> 1.0)
23
- json (2.3.1)
24
- minitest (5.14.4)
23
+ json (2.6.1)
24
+ minitest (5.15.0)
25
25
  rake (12.3.3)
26
26
  rspec (3.10.0)
27
27
  rspec-core (~> 3.10.0)
@@ -38,7 +38,7 @@ GEM
38
38
  rspec-support (3.10.3)
39
39
  tzinfo (2.0.4)
40
40
  concurrent-ruby (~> 1.0)
41
- zeitwerk (2.5.1)
41
+ zeitwerk (2.5.3)
42
42
 
43
43
  PLATFORMS
44
44
  ruby
data/README.md CHANGED
@@ -49,6 +49,20 @@ 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
+
57
+ ### 0.0.8
58
+
59
+ * Adding `ActionController::UnfilteredParameters` as known exceptions
60
+ * Adjust heuristic rate for better matching
61
+
62
+ ### 0.0.7
63
+
64
+ * Remove empty lines on summary without report
65
+
52
66
  ### 0.0.6
53
67
 
54
68
  * Adding heuristic to rate known exceptions
@@ -14,6 +14,7 @@ class RailsLogParser::Action
14
14
  'ActionController::RoutingError' => :fatal,
15
15
  "Can't verify CSRF token authenticity." => :warn,
16
16
  'ActionController::InvalidAuthenticityToken' => :fatal,
17
+ 'ActionController::UnfilteredParameters' => :fatal,
17
18
  }.freeze
18
19
 
19
20
  extend Enumerize
@@ -11,7 +11,7 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
11
11
  RailsLogParser::Action::KNOWN_EXCEPTIONS.each_key do |exception|
12
12
  sums[exception.to_sym] = 0
13
13
  end
14
- 7.times do |i|
14
+ 10.times do |i|
15
15
  stats = RailsLogParser::HeuristicStatFile.new(path, today.date - (i + 1)).load_stats
16
16
  sums[:actions] += stats[:actions].to_i
17
17
  RailsLogParser::Action::KNOWN_EXCEPTIONS.each_key do |exception|
@@ -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|
@@ -57,10 +58,10 @@ class RailsLogParser::Parser
57
58
  unless @heuristic.nil?
58
59
  stats = RailsLogParser::HeuristicStatFile.build_heuristic(@heuristic, @heuristic_today)
59
60
  if stats.present?
60
- summary_output.push('Heuristic match!')
61
- stats.each { |k, v| summary_output.push("- #{k}: #{v}") }
61
+ summary_output.push("Heuristic match! (threshold: #{RailsLogParser::HeuristicStatFile.heuristic_threshold})")
62
+ stats.each { |k, v| summary_output.push("- #{k}: #{v.round(4)}") }
63
+ summary_output.push("\n\n")
62
64
  end
63
- summary_output.push("\n\n")
64
65
  end
65
66
 
66
67
  summary_output.join("\n")
@@ -3,12 +3,13 @@
3
3
  require 'enumerize'
4
4
 
5
5
  module RailsLogParser
6
- THRESHOLD_HEURISTIC = 0.01
6
+ THRESHOLD_HEURISTIC = 0.02
7
7
  end
8
8
 
9
9
  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.6'
5
+ spec.version = '0.0.9'
6
6
  spec.authors = ['Georg Limbach']
7
7
  spec.email = ['georg.limbach@lichtbit.com']
8
8
 
@@ -23,6 +23,6 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ['lib']
24
24
 
25
25
  spec.add_dependency 'enumerize', '~> 2.4'
26
- spec.add_dependency 'json'
27
- spec.add_development_dependency 'rspec'
26
+ spec.add_dependency 'json', '>= 2.0'
27
+ spec.add_development_dependency 'rspec', '>= 3.0'
28
28
  end
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.6
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: 2021-12-15 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
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: '2.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '3.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '3.0'
55
55
  description: If you want to get an email with errors and fatal log lines you can use
56
56
  this gem.
57
57
  email:
@@ -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