rails_log_parser 0.0.9 → 0.0.10

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: 96d17b92a0e47f95f636d1f1006e5a6e32573c08d22c26269a80b63f8fc379c5
4
- data.tar.gz: 3693d726cd73d53479917370c967fb2d028a5ad9ef4cc27442e413eabb84f88c
3
+ metadata.gz: eb02caffd4cab2119b027687a4fd22edd87f041b3dd718362bfdf7d7f6d5983c
4
+ data.tar.gz: b40124289928b7dd44bc5e91c654df4544734f6c696140b351ee7abdda1da4a3
5
5
  SHA512:
6
- metadata.gz: 389480dd2c6b6f6dd8c732b7bc07c458df3190a7fc1f56253adb8a780a1717efebd17947c5e4c8050b912f6838487a01c65737b45feb51867ce4830beeda5057
7
- data.tar.gz: f834c008d3a24a589a51f8ba5cfa70b3bcdfb372987df5875d30a0402848cde4184531dd4fb5d9e82f5979d284c23d53f6bb090ab276f3c221719f0563d0d593
6
+ metadata.gz: 1bbb6a44f2f2f5f7ad4f53c5e73ede2103eed928ba0198d248b5d7d5ee82e13066f46143acb13023cc1408ca90c48f4e1acfd97b1d08efd0b8fa823809f890a5
7
+ data.tar.gz: 8b93bd4350b41c00b808c44ae8b61b68b45aa9af7bad2a2d8dddfa16b75f0d2efeffd49124fc216f2375f0ef1626d95b047e48c84138c2b5ebc88fb6e87c74d0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.9)
4
+ rails_log_parser (0.0.10)
5
5
  enumerize (~> 2.4)
6
6
  json (>= 2.0)
7
7
 
data/README.md CHANGED
@@ -49,6 +49,10 @@ print parser.summary(last_minutes: 22) # print summary for the last 22
49
49
 
50
50
  ## Changelog
51
51
 
52
+ ### 0.0.10
53
+
54
+ * Ignore periods with too few requests
55
+
52
56
  ### 0.0.9
53
57
 
54
58
  * Message not parseable lines only once a day
@@ -20,9 +20,10 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
20
20
  end
21
21
  output = {}
22
22
  RailsLogParser::Action::KNOWN_EXCEPTIONS.each_key do |exception|
23
- next if sums[:actions] == 0
23
+ next if sums[:actions] < heuristic_min_actions
24
24
 
25
25
  quota = sums[exception.to_sym].to_f / sums[:actions]
26
+ next if quota == 0
26
27
  today_quota = today.rate(exception)
27
28
  next if today_quota == 0
28
29
 
@@ -35,6 +36,10 @@ RailsLogParser::HeuristicStatFile = Struct.new(:path, :date) do
35
36
  def heuristic_threshold
36
37
  @heuristic_threshold ||= ENV['RAILS_LOG_PARSER_THRESHOLD_HEURISTIC'] || RailsLogParser::THRESHOLD_HEURISTIC
37
38
  end
39
+
40
+ def heuristic_min_actions
41
+ @heuristic_min_actions ||= ENV['RAILS_LOG_PARSER_MIN_ACTIONS_HEURISTIC'] || RailsLogParser::MIN_ACTIONS_HEURISTIC
42
+ end
38
43
  end
39
44
 
40
45
  def write_stats(actions)
@@ -4,6 +4,7 @@ require 'enumerize'
4
4
 
5
5
  module RailsLogParser
6
6
  THRESHOLD_HEURISTIC = 0.02
7
+ MIN_ACTIONS_HEURISTIC = 10000
7
8
  end
8
9
 
9
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.9'
5
+ spec.version = '0.0.10'
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.9
4
+ version: 0.0.10
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-03-14 00:00:00.000000000 Z
11
+ date: 2022-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enumerize