moesif_rack 1.4.9 → 1.4.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/moesif_capture_outgoing/httplog/http_log.rb +10 -8
- 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: e9862b7c7e3a113f37599bff78bf6fbca9bd1edd439dac103f26ec54354dc862
|
|
4
|
+
data.tar.gz: 507fe6d85365f8588063e656d3085e34c8b6b7b5a9e17ec7b993dc8f31af60ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef060aca2101ec875908456975537dba773fbbf4d721ed0a0797c0a03c23604e750a98fff8ec4d9b836b4aba6ba5b090ffa4aed1866d25ef0d49d36d5cad94fd
|
|
7
|
+
data.tar.gz: c7a845885a3fc2171e904e08c05f553b025037e72027e9dfea2c52a2b186266ea93d26ce51d091f14a9d514c8afe084e3dddab5886d7d70400669418a083cba8
|
|
@@ -24,15 +24,15 @@ module MoesifCaptureOutgoing
|
|
|
24
24
|
@skip_outgoing = options['skip_outgoing']
|
|
25
25
|
@mask_data_outgoing = options['mask_data_outgoing']
|
|
26
26
|
@log_body_outgoing = options.fetch('log_body_outgoing', true)
|
|
27
|
-
@app_config = AppConfig.new
|
|
28
|
-
@config = @app_config.get_config(@api_controller, @debug)
|
|
27
|
+
@app_config = AppConfig.new(@debug)
|
|
29
28
|
@config_etag = nil
|
|
30
29
|
@sampling_percentage = 100
|
|
31
30
|
@last_updated_time = Time.now.utc
|
|
32
31
|
@config_dict = Hash.new
|
|
33
32
|
begin
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
new_config = @app_config.get_config(@api_controller)
|
|
34
|
+
if !new_config.nil?
|
|
35
|
+
@config, @config_etag, @last_config_download_time = @app_config.parse_configuration(new_config)
|
|
36
36
|
end
|
|
37
37
|
rescue => exception
|
|
38
38
|
if @debug
|
|
@@ -176,7 +176,7 @@ module MoesifCaptureOutgoing
|
|
|
176
176
|
begin
|
|
177
177
|
@random_percentage = Random.rand(0.00..100.00)
|
|
178
178
|
begin
|
|
179
|
-
@sampling_percentage = @app_config.get_sampling_percentage(@config, event_model.user_id, event_model.company_id
|
|
179
|
+
@sampling_percentage = @app_config.get_sampling_percentage(@config, event_model.user_id, event_model.company_id)
|
|
180
180
|
rescue => exception
|
|
181
181
|
if @debug
|
|
182
182
|
puts 'Error while getting sampling percentage, assuming default behavior'
|
|
@@ -196,8 +196,10 @@ module MoesifCaptureOutgoing
|
|
|
196
196
|
|
|
197
197
|
if !event_response_config_etag.nil? && !@config_etag.nil? && @config_etag != event_response_config_etag && Time.now.utc > @last_updated_time + 300
|
|
198
198
|
begin
|
|
199
|
-
|
|
200
|
-
|
|
199
|
+
new_config = @app_config.get_config(@api_controller)
|
|
200
|
+
if !new_config.nil?
|
|
201
|
+
@config, @config_etag, @last_config_download_time = @app_config.parse_configuration(new_config)
|
|
202
|
+
end
|
|
201
203
|
rescue => exception
|
|
202
204
|
if @debug
|
|
203
205
|
puts 'Error while updating the application configuration'
|
|
@@ -222,7 +224,7 @@ module MoesifCaptureOutgoing
|
|
|
222
224
|
puts e.response_code
|
|
223
225
|
end
|
|
224
226
|
rescue => e
|
|
225
|
-
if debug
|
|
227
|
+
if @debug
|
|
226
228
|
puts e.to_s
|
|
227
229
|
end
|
|
228
230
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moesif_rack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Moesif, Inc
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-06-
|
|
12
|
+
date: 2021-06-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|