rails_log_parser 0.0.14 → 0.0.15
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 +100 -8
- data/README.md +17 -0
- data/lib/rails_log_parser/action.rb +6 -0
- data/lib/rails_log_parser/parser.rb +4 -1
- data/lib/rails_log_parser.rb +7 -0
- data/rails_log_parser.gemspec +2 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7075d8f72e2f41875ca8e7d7b96cc9895a09cf3561b1f7a8ce140decd8172f0c
|
4
|
+
data.tar.gz: 0c497f4bcb5a4802d0a2933f5af11b95498a60fadb57619fe13719441e8f49d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e9ec59884a21ac46292369dea9d3ff94426bff3d67cb4962cf220f5412448b8d366515837b12ea319cdfa2c7f34320819c9bdaf23ee4584bf3ebfb169478807
|
7
|
+
data.tar.gz: 1ede0e6934f9e56d2fe0e88b93835d08da872395fb5678ba4eabdd729ba4e167bbea90dda06aa6565e485f1e2ec48082607d30d37df11c7245a78c979d8f21f5
|
data/Gemfile.lock
CHANGED
@@ -1,27 +1,108 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rails_log_parser (0.0.
|
4
|
+
rails_log_parser (0.0.15)
|
5
5
|
enumerize (~> 2.4)
|
6
6
|
json (>= 2.0)
|
7
|
+
rails (>= 2.1)
|
7
8
|
|
8
9
|
GEM
|
9
10
|
remote: https://rubygems.org/
|
10
11
|
specs:
|
11
|
-
|
12
|
+
actioncable (5.2.5)
|
13
|
+
actionpack (= 5.2.5)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailer (5.2.5)
|
17
|
+
actionpack (= 5.2.5)
|
18
|
+
actionview (= 5.2.5)
|
19
|
+
activejob (= 5.2.5)
|
20
|
+
mail (~> 2.5, >= 2.5.4)
|
21
|
+
rails-dom-testing (~> 2.0)
|
22
|
+
actionpack (5.2.5)
|
23
|
+
actionview (= 5.2.5)
|
24
|
+
activesupport (= 5.2.5)
|
25
|
+
rack (~> 2.0, >= 2.0.8)
|
26
|
+
rack-test (>= 0.6.3)
|
27
|
+
rails-dom-testing (~> 2.0)
|
28
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
29
|
+
actionview (5.2.5)
|
30
|
+
activesupport (= 5.2.5)
|
31
|
+
builder (~> 3.1)
|
32
|
+
erubi (~> 1.4)
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
35
|
+
activejob (5.2.5)
|
36
|
+
activesupport (= 5.2.5)
|
37
|
+
globalid (>= 0.3.6)
|
38
|
+
activemodel (5.2.5)
|
39
|
+
activesupport (= 5.2.5)
|
40
|
+
activerecord (5.2.5)
|
41
|
+
activemodel (= 5.2.5)
|
42
|
+
activesupport (= 5.2.5)
|
43
|
+
arel (>= 9.0)
|
44
|
+
activestorage (5.2.5)
|
45
|
+
actionpack (= 5.2.5)
|
46
|
+
activerecord (= 5.2.5)
|
47
|
+
marcel (~> 1.0.0)
|
48
|
+
activesupport (5.2.5)
|
12
49
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (>=
|
14
|
-
minitest (
|
15
|
-
tzinfo (~>
|
16
|
-
|
50
|
+
i18n (>= 0.7, < 2)
|
51
|
+
minitest (~> 5.1)
|
52
|
+
tzinfo (~> 1.1)
|
53
|
+
arel (9.0.0)
|
54
|
+
builder (3.2.4)
|
17
55
|
concurrent-ruby (1.2.2)
|
56
|
+
crass (1.0.6)
|
18
57
|
diff-lcs (1.4.4)
|
19
58
|
enumerize (2.5.0)
|
20
59
|
activesupport (>= 3.2)
|
60
|
+
erubi (1.10.0)
|
61
|
+
globalid (0.4.2)
|
62
|
+
activesupport (>= 4.2.0)
|
21
63
|
i18n (1.12.0)
|
22
64
|
concurrent-ruby (~> 1.0)
|
23
65
|
json (2.6.3)
|
66
|
+
loofah (2.9.1)
|
67
|
+
crass (~> 1.0.2)
|
68
|
+
nokogiri (>= 1.5.9)
|
69
|
+
mail (2.7.1)
|
70
|
+
mini_mime (>= 0.1.1)
|
71
|
+
marcel (1.0.1)
|
72
|
+
method_source (1.0.0)
|
73
|
+
mini_mime (1.1.0)
|
74
|
+
mini_portile2 (2.4.0)
|
24
75
|
minitest (5.18.0)
|
76
|
+
nio4r (2.5.7)
|
77
|
+
nokogiri (1.10.10)
|
78
|
+
mini_portile2 (~> 2.4.0)
|
79
|
+
rack (2.2.3)
|
80
|
+
rack-test (1.1.0)
|
81
|
+
rack (>= 1.0, < 3)
|
82
|
+
rails (5.2.5)
|
83
|
+
actioncable (= 5.2.5)
|
84
|
+
actionmailer (= 5.2.5)
|
85
|
+
actionpack (= 5.2.5)
|
86
|
+
actionview (= 5.2.5)
|
87
|
+
activejob (= 5.2.5)
|
88
|
+
activemodel (= 5.2.5)
|
89
|
+
activerecord (= 5.2.5)
|
90
|
+
activestorage (= 5.2.5)
|
91
|
+
activesupport (= 5.2.5)
|
92
|
+
bundler (>= 1.3.0)
|
93
|
+
railties (= 5.2.5)
|
94
|
+
sprockets-rails (>= 2.0.0)
|
95
|
+
rails-dom-testing (2.0.3)
|
96
|
+
activesupport (>= 4.2.0)
|
97
|
+
nokogiri (>= 1.6)
|
98
|
+
rails-html-sanitizer (1.3.0)
|
99
|
+
loofah (~> 2.3)
|
100
|
+
railties (5.2.5)
|
101
|
+
actionpack (= 5.2.5)
|
102
|
+
activesupport (= 5.2.5)
|
103
|
+
method_source
|
104
|
+
rake (>= 0.8.7)
|
105
|
+
thor (>= 0.19.0, < 2.0)
|
25
106
|
rake (12.3.3)
|
26
107
|
rspec (3.10.0)
|
27
108
|
rspec-core (~> 3.10.0)
|
@@ -36,9 +117,20 @@ GEM
|
|
36
117
|
diff-lcs (>= 1.2.0, < 2.0)
|
37
118
|
rspec-support (~> 3.10.0)
|
38
119
|
rspec-support (3.10.3)
|
39
|
-
|
120
|
+
sprockets (4.0.2)
|
40
121
|
concurrent-ruby (~> 1.0)
|
41
|
-
|
122
|
+
rack (> 1, < 3)
|
123
|
+
sprockets-rails (3.2.2)
|
124
|
+
actionpack (>= 4.0)
|
125
|
+
activesupport (>= 4.0)
|
126
|
+
sprockets (>= 3.0.0)
|
127
|
+
thor (1.1.0)
|
128
|
+
thread_safe (0.3.6)
|
129
|
+
tzinfo (1.2.9)
|
130
|
+
thread_safe (~> 0.1)
|
131
|
+
websocket-driver (0.7.3)
|
132
|
+
websocket-extensions (>= 0.1.0)
|
133
|
+
websocket-extensions (0.1.5)
|
42
134
|
|
43
135
|
PLATFORMS
|
44
136
|
ruby
|
data/README.md
CHANGED
@@ -47,8 +47,25 @@ parser.enable_heuristic(File.dirname(log_path)) # path to save heuristic stats
|
|
47
47
|
print parser.summary(last_minutes: 22) # print summary for the last 22 minutes
|
48
48
|
```
|
49
49
|
|
50
|
+
You can configure filters:
|
51
|
+
|
52
|
+
```ruby
|
53
|
+
# config/rails_log_parser.rb
|
54
|
+
|
55
|
+
RailsLogParser.configure do |parser|
|
56
|
+
parser.ignore_lines = [
|
57
|
+
/Error performing MailerConfigurationJob .+ Net::ReadTimeout/,
|
58
|
+
]
|
59
|
+
end
|
60
|
+
```
|
61
|
+
|
62
|
+
|
50
63
|
## Changelog
|
51
64
|
|
65
|
+
### 0.0.15
|
66
|
+
|
67
|
+
* Filter lines by config file
|
68
|
+
|
52
69
|
### 0.0.14
|
53
70
|
|
54
71
|
* Better empty lines handling
|
@@ -22,6 +22,9 @@ class RailsLogParser::Parser
|
|
22
22
|
attr_reader :not_parseable_lines
|
23
23
|
|
24
24
|
def initialize
|
25
|
+
config_file = File.join(Dir.pwd,'config/rails_log_parser.rb')
|
26
|
+
require config_file if File.file?(config_file)
|
27
|
+
|
25
28
|
@actions = {}
|
26
29
|
@not_parseable_lines = RailsLogParser::NotParseableLines.new
|
27
30
|
@heuristic = nil
|
@@ -47,7 +50,7 @@ class RailsLogParser::Parser
|
|
47
50
|
end
|
48
51
|
|
49
52
|
%i[warn error fatal].each do |severity|
|
50
|
-
selected = relevant.select { |a| a.public_send("#{severity}?") }.reject(&:known_exception?)
|
53
|
+
selected = relevant.select { |a| a.public_send("#{severity}?") }.reject(&:known_exception?).reject(&:ignore?)
|
51
54
|
next if selected.blank?
|
52
55
|
|
53
56
|
summary_output.push("#{selected.count} lines with #{severity}:")
|
data/lib/rails_log_parser.rb
CHANGED
@@ -1,10 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'enumerize'
|
4
|
+
require 'active_support/core_ext/module/attribute_accessors'
|
4
5
|
|
5
6
|
module RailsLogParser
|
6
7
|
THRESHOLD_HEURISTIC = 0.02
|
7
8
|
MIN_ACTIONS_HEURISTIC = 100000 # sum of last 10 days
|
9
|
+
|
10
|
+
mattr_accessor :ignore_lines, default: []
|
11
|
+
|
12
|
+
def self.configure
|
13
|
+
yield self
|
14
|
+
end
|
8
15
|
end
|
9
16
|
|
10
17
|
require_relative 'rails_log_parser/parser'
|
data/rails_log_parser.gemspec
CHANGED
@@ -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.
|
5
|
+
spec.version = '0.0.15'
|
6
6
|
spec.authors = ['Georg Limbach']
|
7
7
|
spec.email = ['georg.limbach@lichtbit.com']
|
8
8
|
|
@@ -24,5 +24,6 @@ Gem::Specification.new do |spec|
|
|
24
24
|
|
25
25
|
spec.add_dependency 'enumerize', '~> 2.4'
|
26
26
|
spec.add_dependency 'json', '>= 2.0'
|
27
|
+
spec.add_dependency 'rails', '>= 2.1'
|
27
28
|
spec.add_development_dependency 'rspec', '>= 3.0'
|
28
29
|
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.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Georg Limbach
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: enumerize
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '2.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rails
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.1'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: rspec
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|