rails_log_parser 0.0.1 → 0.0.5

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: a7d5317b56ac5adc2cd38dae3ec083ab684960a1ce622821140c8b1d7ecfe33c
4
- data.tar.gz: 12f6efea87dfc891e31eadadbb1e6a5993b1c5b8c5fee0ea648246415b55c167
3
+ metadata.gz: 562cdf65348bb6f1406b061e9fffdbf7798483a717e4d41f870fca74f79f7a22
4
+ data.tar.gz: 40f42a3a731a3dc3cc2273fe7c092fb164db8d71bda905ee2aca63c4f277178c
5
5
  SHA512:
6
- metadata.gz: 2a995df0bc41c2e81ef0b0cbd283592a24a17f030f1b02fb868d50d1b79f0982643187e9013fd9cddb2539dc9fe7a82a1e290198a5214e1373c735c63b9d305a
7
- data.tar.gz: f999faf6b4905bd5ee0191d0a6402e456928836bb296970407c00bf91635e575fb147fa88b064de272882871a301da467134bc64399c6868c9045b2cfb711025
6
+ metadata.gz: 6f8972ae1e268299f844f7a087106b044af77f7aa244f91962af3732173f59fa8ff813284f8ffcc4750b51d578f7eb94bef7039046ca48b81ffd26d20dfeffe1
7
+ data.tar.gz: 5c9e1c42a92b2540f5e90a4914d7a395685edf44dc5288f7c68399fff52b08214f5425a1941dbb3986789021b33f92ab2d5e7f277a7fc327a4b3079267c96739
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.1)
4
+ rails_log_parser (0.0.5)
5
5
  enumerize (~> 2.4)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -29,9 +29,35 @@ RailsLogParser::Parser.log_path = Rails.root.join('log/production.log')
29
29
  Call the rake tasks in cronjobs:
30
30
 
31
31
  ```
32
+ LOG_PATH=/srv/rails/log/production.log
32
33
  0,20,40 * * * * rake rails_log_parser:parse[22]' # summary of the last 22 minutes
33
34
  ```
34
35
 
36
+ Or use it in your code:
37
+
38
+ ```ruby
39
+ parser = RailsLogParser::Parser.from_file(log_path)
40
+ puts parser.actions.select(&:fatal?).map(&:headline)
41
+ ```
42
+
43
+ ## Changelog
44
+
45
+ ### 0.0.5
46
+
47
+ * Removing `URI::InvalidURIError` as known exceptions
48
+
49
+ ### 0.0.4
50
+
51
+ * Handle stacktrace of fatals too
52
+
53
+ ### 0.0.3
54
+
55
+ * Adding `URI::InvalidURIError` as known exceptions
56
+
57
+ ### 0.0.2
58
+
59
+ * Adding `ActionController::InvalidAuthenticityToken` as known exceptions
60
+
35
61
  ## Contributing
36
62
 
37
63
  Bug reports and pull requests are welcome on GitHub at https://github.com/Lichtbit/rails_log_parser.
@@ -12,6 +12,7 @@ class RailsLogParser::Action
12
12
  'ActiveRecord::RecordNotFound' => :fatal,
13
13
  'ActionController::RoutingError' => :fatal,
14
14
  "Can't verify CSRF token authenticity." => :warn,
15
+ 'ActionController::InvalidAuthenticityToken' => :fatal,
15
16
  }.freeze
16
17
 
17
18
  extend Enumerize
@@ -96,7 +96,7 @@ class RailsLogParser::Line
96
96
  return
97
97
  end
98
98
 
99
- if parser.last_action&.error?
99
+ if parser.last_action&.error? || parser.last_action&.fatal?
100
100
  parser.last_action.add_stacktrace(line)
101
101
  return
102
102
  end
@@ -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.1'
5
+ spec.version = '0.0.5'
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.1
4
+ version: 0.0.5
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-11-28 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enumerize
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  requirements: []
84
- rubygems_version: 3.1.4
84
+ rubygems_version: 3.0.8
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: Simple and fast analysing of default rails logs