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 +4 -4
- data/Gemfile.lock +5 -5
- data/README.md +5 -0
- data/lib/rails_log_parser/action.rb +1 -0
- data/lib/rails_log_parser/heuristic_stat_file.rb +1 -1
- data/lib/rails_log_parser/parser.rb +2 -2
- data/lib/rails_log_parser.rb +1 -1
- data/rails_log_parser.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c63fac78d3fda42cab291bcd30cc7abb739ed75ca82de98a72efb0587fd35954
|
4
|
+
data.tar.gz: d04eb23a0d4a37af92ce87a74ea900ef6b35ecb502e612ea559a5158afa76baf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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.
|
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.
|
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.
|
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
|
-
|
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(
|
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
|
data/lib/rails_log_parser.rb
CHANGED
data/rails_log_parser.gemspec
CHANGED
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.
|
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:
|
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.
|
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
|