rails_log_parser 0.0.7 → 0.0.8

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: c63fac78d3fda42cab291bcd30cc7abb739ed75ca82de98a72efb0587fd35954
4
+ data.tar.gz: d04eb23a0d4a37af92ce87a74ea900ef6b35ecb502e612ea559a5158afa76baf
5
5
  SHA512:
6
- metadata.gz: 65053ab7d6218dbddff70035b00bdb719efea68f617a1d109a178e24e3cd86afbe734245a6326a6ee305330a81dd7831c059075e741953bbac07c116c3c8dc05
7
- data.tar.gz: 47e107f64fa6ffbe6780268960884ffe19206de3cbfe74a2255fb6194e0ede28be2a00aa456c0edbbc7d0a52cc0f6f92284b54a7c48a793a5b75509a2b441daa
6
+ metadata.gz: a5de5ab1e2853550540f58538743c1394332fd32895a061675cf4d39c0efda4a21c5d42a13045a9e78477350054403423b1b38264c2920e576aceb1658ac594f
7
+ data.tar.gz: 614f54e398d1f113cdd7345b05b51e402795dc1e2cc363ba9e1209f828cc3d928a008a6fd30ea7684382b2eb8affe59727f5d808fe8fb49df9bacd53a30e5ef2
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.8)
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,11 @@ print parser.summary(last_minutes: 22) # print summary for the last 22
49
49
 
50
50
  ## Changelog
51
51
 
52
+ ### 0.0.8
53
+
54
+ * Adding `ActionController::UnfilteredParameters` as known exceptions
55
+ * Adjust heuristic rate for better matching
56
+
52
57
  ### 0.0.7
53
58
 
54
59
  * 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|
@@ -57,8 +57,8 @@ class RailsLogParser::Parser
57
57
  unless @heuristic.nil?
58
58
  stats = RailsLogParser::HeuristicStatFile.build_heuristic(@heuristic, @heuristic_today)
59
59
  if stats.present?
60
- summary_output.push('Heuristic match!')
61
- stats.each { |k, v| summary_output.push("- #{k}: #{v}") }
60
+ summary_output.push("Heuristic match! (threshold: #{RailsLogParser::HeuristicStatFile.heuristic_threshold})")
61
+ stats.each { |k, v| summary_output.push("- #{k}: #{v.round(4)}") }
62
62
  summary_output.push("\n\n")
63
63
  end
64
64
  end
@@ -3,7 +3,7 @@
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'
@@ -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.8'
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.8
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-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enumerize
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  requirements: []
99
- rubygems_version: 3.1.6
99
+ rubygems_version: 3.0.8
100
100
  signing_key:
101
101
  specification_version: 4
102
102
  summary: Simple and fast analysing of default rails logs