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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/lib/rails_log_parser/heuristic_stat_file.rb +6 -1
- data/lib/rails_log_parser.rb +1 -0
- data/rails_log_parser.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb02caffd4cab2119b027687a4fd22edd87f041b3dd718362bfdf7d7f6d5983c
|
4
|
+
data.tar.gz: b40124289928b7dd44bc5e91c654df4544734f6c696140b351ee7abdda1da4a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bbb6a44f2f2f5f7ad4f53c5e73ede2103eed928ba0198d248b5d7d5ee82e13066f46143acb13023cc1408ca90c48f4e1acfd97b1d08efd0b8fa823809f890a5
|
7
|
+
data.tar.gz: 8b93bd4350b41c00b808c44ae8b61b68b45aa9af7bad2a2d8dddfa16b75f0d2efeffd49124fc216f2375f0ef1626d95b047e48c84138c2b5ebc88fb6e87c74d0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -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]
|
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)
|
data/lib/rails_log_parser.rb
CHANGED
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.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-
|
11
|
+
date: 2022-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: enumerize
|