rails_log_parser 0.0.7 → 0.0.10

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: c223d9d32b464e7247934f4324ed4f4e38c64a9f6714737703b01578de4b3fe2
4
- data.tar.gz: 540d452e4d79f74725ef369920f1fbb2a11cb8a5392316708779fe253d1ebb14
3
+ metadata.gz: eb02caffd4cab2119b027687a4fd22edd87f041b3dd718362bfdf7d7f6d5983c
4
+ data.tar.gz: b40124289928b7dd44bc5e91c654df4544734f6c696140b351ee7abdda1da4a3
5
5
  SHA512:
6
- metadata.gz: 65053ab7d6218dbddff70035b00bdb719efea68f617a1d109a178e24e3cd86afbe734245a6326a6ee305330a81dd7831c059075e741953bbac07c116c3c8dc05
7
- data.tar.gz: 47e107f64fa6ffbe6780268960884ffe19206de3cbfe74a2255fb6194e0ede28be2a00aa456c0edbbc7d0a52cc0f6f92284b54a7c48a793a5b75509a2b441daa
6
+ metadata.gz: 1bbb6a44f2f2f5f7ad4f53c5e73ede2103eed928ba0198d248b5d7d5ee82e13066f46143acb13023cc1408ca90c48f4e1acfd97b1d08efd0b8fa823809f890a5
7
+ data.tar.gz: 8b93bd4350b41c00b808c44ae8b61b68b45aa9af7bad2a2d8dddfa16b75f0d2efeffd49124fc216f2375f0ef1626d95b047e48c84138c2b5ebc88fb6e87c74d0
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.7)
4
+ rails_log_parser (0.0.10)
5
5
  enumerize (~> 2.4)
6
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
23
  json (2.6.1)
24
- minitest (5.14.4)
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.10
53
+
54
+ * Ignore periods with too few requests
55
+
56
+ ### 0.0.9
57
+
58
+ * Message not parseable lines only once a day
59
+ * Delete old heuristic stat files automaticly
60
+
61
+ ### 0.0.8
62
+
63
+ * Adding `ActionController::UnfilteredParameters` as known exceptions
64
+ * Adjust heuristic rate for better matching
65
+
52
66
  ### 0.0.7
53
67
 
54
68
  * Remove empty lines on summary without report
@@ -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|
@@ -20,9 +20,10 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
20
20
  end
21
21
  output = {}
22
22
  RailsLogParser::Action::KNOWN_EXCEPTIONS.each_key do |exception|
23
- next if sums[:actions] == 0
23
+ next if sums[:actions] < heuristic_min_actions
24
24
 
25
25
  quota = sums[exception.to_sym].to_f / sums[:actions]
26
+ next if quota == 0
26
27
  today_quota = today.rate(exception)
27
28
  next if today_quota == 0
28
29
 
@@ -35,6 +36,10 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
35
36
  def heuristic_threshold
36
37
  @heuristic_threshold ||= ENV['RAILS_LOG_PARSER_THRESHOLD_HEURISTIC'] || RailsLogParser::THRESHOLD_HEURISTIC
37
38
  end
39
+
40
+ def heuristic_min_actions
41
+ @heuristic_min_actions ||= ENV['RAILS_LOG_PARSER_MIN_ACTIONS_HEURISTIC'] || RailsLogParser::MIN_ACTIONS_HEURISTIC
42
+ end
38
43
  end
39
44
 
40
45
  def write_stats(actions)
@@ -49,9 +54,18 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
49
54
  RailsLogParser::Action::KNOWN_EXCEPTIONS.each_key do |exception|
50
55
  @stats[:known_exceptions][exception.to_sym] = actions.count { |action| action.known_exception?(exception) }
51
56
  end
57
+
58
+ delete_old_stats
52
59
  File.write(heuristic_file_path, @stats.to_json)
53
60
  end
54
61
 
62
+ def delete_old_stats
63
+ last_20_days = (0..19).map { |i| (Date.today - i) }.map { |date| File.join(path, "heuristic_stats_#{date}.json") }
64
+ Dir[File.join(path, 'heuristic_stats_*.json')].reject { |file| last_20_days.include?(file) }.each do |file|
65
+ File.unlink(file)
66
+ end
67
+ end
68
+
55
69
  def load_stats
56
70
  @stats = JSON.parse(File.read(heuristic_file_path), symbolize_names: true) if File.file?(heuristic_file_path)
57
71
  @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,8 +58,8 @@ 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)}") }
62
63
  summary_output.push("\n\n")
63
64
  end
64
65
  end
@@ -3,12 +3,14 @@
3
3
  require 'enumerize'
4
4
 
5
5
  module RailsLogParser
6
- THRESHOLD_HEURISTIC = 0.01
6
+ THRESHOLD_HEURISTIC = 0.02
7
+ MIN_ACTIONS_HEURISTIC = 10000
7
8
  end
8
9
 
9
10
  require_relative 'rails_log_parser/parser'
10
11
  require_relative 'rails_log_parser/action'
11
12
  require_relative 'rails_log_parser/line'
12
13
  require_relative 'rails_log_parser/heuristic_stat_file'
14
+ require_relative 'rails_log_parser/not_parseable_lines'
13
15
 
14
16
  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.7'
5
+ spec.version = '0.0.10'
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.7
4
+ version: 0.0.10
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-05-30 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
@@ -96,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
97
  - !ruby/object:Gem::Version
97
98
  version: '0'
98
99
  requirements: []
99
- rubygems_version: 3.1.6
100
+ rubygems_version: 3.0.8
100
101
  signing_key:
101
102
  specification_version: 4
102
103
  summary: Simple and fast analysing of default rails logs