rails_log_parser 0.0.8 → 0.0.11

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: 576171823f3fa4aacd3fe442e88b4fe02ac451bd2d43201ffde3e62ce1a7498e
4
+ data.tar.gz: 8cea97be36724fe58aa5d2d2ca740529c05eed3e1ce46bc33a104508cd31a6bb
5
5
  SHA512:
6
- metadata.gz: a5de5ab1e2853550540f58538743c1394332fd32895a061675cf4d39c0efda4a21c5d42a13045a9e78477350054403423b1b38264c2920e576aceb1658ac594f
7
- data.tar.gz: 614f54e398d1f113cdd7345b05b51e402795dc1e2cc363ba9e1209f828cc3d928a008a6fd30ea7684382b2eb8affe59727f5d808fe8fb49df9bacd53a30e5ef2
6
+ metadata.gz: 5feb9c35f0e05c35b91ab8f72dd9b0674a7e491154c05209c1bbc88a22e703a62cda6bb881c446a20c47fc2722de9f105d7e2bd03f8d49e6a95261909bf26b9c
7
+ data.tar.gz: e0ec7cffe45320c215f1581c82481133fd6ed979e6c872a32446bfdfd12f7c7b0f7c85f3b7846a9217aaf25bf15c92891c1f1290d8ec1d90c54bb19481e27596
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.11)
5
5
  enumerize (~> 2.4)
6
6
  json (>= 2.0)
7
7
 
@@ -14,11 +14,11 @@ GEM
14
14
  minitest (>= 5.1)
15
15
  tzinfo (~> 2.0)
16
16
  zeitwerk (~> 2.3)
17
- concurrent-ruby (1.1.9)
17
+ concurrent-ruby (1.1.10)
18
18
  diff-lcs (1.4.4)
19
19
  enumerize (2.5.0)
20
20
  activesupport (>= 3.2)
21
- i18n (1.8.11)
21
+ i18n (1.10.0)
22
22
  concurrent-ruby (~> 1.0)
23
23
  json (2.6.1)
24
24
  minitest (5.15.0)
data/README.md CHANGED
@@ -49,6 +49,19 @@ print parser.summary(last_minutes: 22) # print summary for the last 22
49
49
 
50
50
  ## Changelog
51
51
 
52
+ ### 0.0.11
53
+
54
+ * Increase minimum requests value for heuristic
55
+
56
+ ### 0.0.10
57
+
58
+ * Ignore periods with too few requests
59
+
60
+ ### 0.0.9
61
+
62
+ * Message not parseable lines only once a day
63
+ * Delete old heuristic stat files automaticly
64
+
52
65
  ### 0.0.8
53
66
 
54
67
  * Adding `ActionController::UnfilteredParameters` as known exceptions
@@ -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|
@@ -4,11 +4,13 @@ require 'enumerize'
4
4
 
5
5
  module RailsLogParser
6
6
  THRESHOLD_HEURISTIC = 0.02
7
+ MIN_ACTIONS_HEURISTIC = 100000 # sum of last 10 days
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.8'
5
+ spec.version = '0.0.11'
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.11
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-06-13 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