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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +26 -0
- data/lib/rails_log_parser/action.rb +1 -0
- data/lib/rails_log_parser/line.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: 562cdf65348bb6f1406b061e9fffdbf7798483a717e4d41f870fca74f79f7a22
|
4
|
+
data.tar.gz: 40f42a3a731a3dc3cc2273fe7c092fb164db8d71bda905ee2aca63c4f277178c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f8972ae1e268299f844f7a087106b044af77f7aa244f91962af3732173f59fa8ff813284f8ffcc4750b51d578f7eb94bef7039046ca48b81ffd26d20dfeffe1
|
7
|
+
data.tar.gz: 5c9e1c42a92b2540f5e90a4914d7a395685edf44dc5288f7c68399fff52b08214f5425a1941dbb3986789021b33f92ab2d5e7f277a7fc327a4b3079267c96739
|
data/Gemfile.lock
CHANGED
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
|
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.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-
|
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.
|
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
|