rails_log_parser 0.0.1 → 0.0.2

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: ea15a1a3ec5a45569f3242ec132c7ad247d545c827cc8583439990095612099e
4
+ data.tar.gz: 4ad9958d1b198976eeb78cde4b8527d9402d90cdfe50ee3737de803de7a43cc6
5
5
  SHA512:
6
- metadata.gz: 2a995df0bc41c2e81ef0b0cbd283592a24a17f030f1b02fb868d50d1b79f0982643187e9013fd9cddb2539dc9fe7a82a1e290198a5214e1373c735c63b9d305a
7
- data.tar.gz: f999faf6b4905bd5ee0191d0a6402e456928836bb296970407c00bf91635e575fb147fa88b064de272882871a301da467134bc64399c6868c9045b2cfb711025
6
+ metadata.gz: ce42b4516aceb6284d2c51f551cadbb46b1ae53a2cc313a3cec003f423d095db6de3b269cb013b14797e9a5b5949f1051d25ae06a0c12f4a8fa4d9e63c75e3ef
7
+ data.tar.gz: edd3514b50cf68188ae011230d73c692695d6abaff9f3146436f58f1b0f39621221bc0ba760be337ad8e2d375438a71de7f367ee53f584564282dc2acbf0d0d5
data/README.md CHANGED
@@ -29,9 +29,23 @@ 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.2
46
+
47
+ * Adding `ActionController::InvalidAuthenticityToken` as known exceptions
48
+
35
49
  ## Contributing
36
50
 
37
51
  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
@@ -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.2'
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.2
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-29 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