rails_log_parser 0.0.10 → 0.0.12

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: eb02caffd4cab2119b027687a4fd22edd87f041b3dd718362bfdf7d7f6d5983c
4
- data.tar.gz: b40124289928b7dd44bc5e91c654df4544734f6c696140b351ee7abdda1da4a3
3
+ metadata.gz: 34e8a7462b11ffcbb17b3acbb54e343da06023e3b508f6d7526a135d84ed48db
4
+ data.tar.gz: c857946860105200d0a3d9c8cfb891944693a5c06a45a23c46559f89c2797e6f
5
5
  SHA512:
6
- metadata.gz: 1bbb6a44f2f2f5f7ad4f53c5e73ede2103eed928ba0198d248b5d7d5ee82e13066f46143acb13023cc1408ca90c48f4e1acfd97b1d08efd0b8fa823809f890a5
7
- data.tar.gz: 8b93bd4350b41c00b808c44ae8b61b68b45aa9af7bad2a2d8dddfa16b75f0d2efeffd49124fc216f2375f0ef1626d95b047e48c84138c2b5ebc88fb6e87c74d0
6
+ metadata.gz: 64c77de264b95758b5d29dfe1d4a608158c5e904b64dcac045cf86ae49fa8ff90fe1eb9927302acf19b060b08a8c609100c4c7f616af463cdfaea973942ee412
7
+ data.tar.gz: 5a3795bac481282536fd801b3ab9a0bf3268c0cc76595e3e67fb080af76a729dcf90d0b7af8797f540599f0b633b9e6b87ad2123f70f1c76dc5b23213071eea8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.10)
4
+ rails_log_parser (0.0.12)
5
5
  enumerize (~> 2.4)
6
6
  json (>= 2.0)
7
7
 
@@ -14,11 +14,11 @@ GEM
14
14
  minitest (>= 5.1)
15
15
  tzinfo (~> 2.0)
16
16
  zeitwerk (~> 2.3)
17
- concurrent-ruby (1.1.9)
17
+ concurrent-ruby (1.1.10)
18
18
  diff-lcs (1.4.4)
19
19
  enumerize (2.5.0)
20
20
  activesupport (>= 3.2)
21
- i18n (1.8.11)
21
+ i18n (1.10.0)
22
22
  concurrent-ruby (~> 1.0)
23
23
  json (2.6.1)
24
24
  minitest (5.15.0)
data/README.md CHANGED
@@ -49,6 +49,14 @@ print parser.summary(last_minutes: 22) # print summary for the last 22
49
49
 
50
50
  ## Changelog
51
51
 
52
+ ### 0.0.12
53
+
54
+ * Adding `ActionController::UnknownFormat` as known exceptions
55
+
56
+ ### 0.0.11
57
+
58
+ * Increase minimum requests value for heuristic
59
+
52
60
  ### 0.0.10
53
61
 
54
62
  * Ignore periods with too few requests
@@ -10,11 +10,12 @@ class RailsLogParser::Action
10
10
 
11
11
  SEVERITIES = %i[debug info warn error fatal].freeze
12
12
  KNOWN_EXCEPTIONS = {
13
- 'ActiveRecord::RecordNotFound' => :fatal,
14
- 'ActionController::RoutingError' => :fatal,
15
13
  "Can't verify CSRF token authenticity." => :warn,
16
14
  'ActionController::InvalidAuthenticityToken' => :fatal,
15
+ 'ActionController::RoutingError' => :fatal,
17
16
  'ActionController::UnfilteredParameters' => :fatal,
17
+ 'ActionController::UnknownFormat' => :fatal,
18
+ 'ActiveRecord::RecordNotFound' => :fatal,
18
19
  }.freeze
19
20
 
20
21
  extend Enumerize
@@ -4,7 +4,7 @@ require 'enumerize'
4
4
 
5
5
  module RailsLogParser
6
6
  THRESHOLD_HEURISTIC = 0.02
7
- MIN_ACTIONS_HEURISTIC = 10000
7
+ MIN_ACTIONS_HEURISTIC = 100000 # sum of last 10 days
8
8
  end
9
9
 
10
10
  require_relative 'rails_log_parser/parser'
@@ -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.10'
5
+ spec.version = '0.0.12'
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.10
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Limbach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-30 00:00:00.000000000 Z
11
+ date: 2023-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enumerize