zuora_connect 1.6.04 → 1.6.05
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/app/models/zuora_connect/app_instance_base.rb +2 -2
- data/lib/zuora_connect/version.rb +1 -1
- metadata +32 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 453d594fb07a0bff60f8e49caaecaf6946b9cae9
|
4
|
+
data.tar.gz: d748b6246b8978f0c11540034061ee38ea9aca75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a760b5accc67e3b0053e30e7f70f3661804de2f4742a04615e63b548710ce9bda1505843549523b26371f16d8241fa50a538ddc9bd5d0caac2e2afa1e5d0038
|
7
|
+
data.tar.gz: 2f0cac559a7556f6eab011d8983bbbfd54ea3af321b31f7431099a211c8473480edd99e6db45ab8a3e7152a66fdad60121b9bc99ab9186248b4cb881f2892542
|
@@ -55,7 +55,7 @@ module ZuoraConnect
|
|
55
55
|
# 200 requests
|
56
56
|
begin
|
57
57
|
ZuoraConnect.configuration.telegraf_client.write(ZuoraConnect.configuration.influxdb_series_name_inbound,
|
58
|
-
tags: {"app_name": "#{ZuoraConnect.configuration.app_name}", "
|
58
|
+
tags: {"app_name": "#{ZuoraConnect.configuration.app_name}", "controller": endpoint_name.split("#")[0] , "action": endpoint_name.split("#")[1] , "content-type": content_type, method: method_name, status: status_code, process_type: p_type, "app_instance": app_instance},
|
59
59
|
values: {response_time: response_time, db_time: db_runtime, view_time: view_runtime})
|
60
60
|
rescue => e
|
61
61
|
raise e
|
@@ -64,7 +64,7 @@ module ZuoraConnect
|
|
64
64
|
# non 200 requests
|
65
65
|
begin
|
66
66
|
ZuoraConnect.configuration.telegraf_client.write(ZuoraConnect.configuration.influxdb_series_name_inbound,
|
67
|
-
tags: {"app_name": "#{ZuoraConnect.configuration.app_name}", "
|
67
|
+
tags: {"app_name": "#{ZuoraConnect.configuration.app_name}", "controller": endpoint_name.split("#")[0] , "action": endpoint_name.split("#")[1], "content-type": content_type, method: method_name, status: status_code, process_type: p_type, "app_instance": app_instance},
|
68
68
|
values: {response_time: response_time})
|
69
69
|
rescue=> e
|
70
70
|
raise e
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora_connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.05
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Connect Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apartment
|
@@ -345,44 +345,44 @@ signing_key:
|
|
345
345
|
specification_version: 4
|
346
346
|
summary: Summary of Connect.
|
347
347
|
test_files:
|
348
|
+
- test/integration/navigation_test.rb
|
348
349
|
- test/controllers/zuora_connect/api/v1/app_instance_controller_test.rb
|
350
|
+
- test/models/zuora_connect/app_instance_test.rb
|
351
|
+
- test/lib/generators/zuora_connect/datatable_generator_test.rb
|
352
|
+
- test/zuora_connect_test.rb
|
353
|
+
- test/fixtures/zuora_connect/app_instances.yml
|
354
|
+
- test/dummy/Rakefile
|
355
|
+
- test/dummy/config.ru
|
356
|
+
- test/dummy/bin/setup
|
349
357
|
- test/dummy/bin/rake
|
350
358
|
- test/dummy/bin/bundle
|
351
|
-
- test/dummy/bin/setup
|
352
359
|
- test/dummy/bin/rails
|
353
|
-
- test/dummy/Rakefile
|
354
|
-
- test/dummy/public/favicon.ico
|
355
|
-
- test/dummy/public/404.html
|
356
|
-
- test/dummy/public/422.html
|
357
|
-
- test/dummy/public/500.html
|
358
|
-
- test/dummy/app/controllers/application_controller.rb
|
359
|
-
- test/dummy/app/views/layouts/application.html.erb
|
360
|
-
- test/dummy/app/helpers/application_helper.rb
|
361
|
-
- test/dummy/app/assets/javascripts/application.js
|
362
|
-
- test/dummy/app/assets/stylesheets/application.css
|
363
|
-
- test/dummy/README.rdoc
|
364
|
-
- test/dummy/config.ru
|
365
|
-
- test/dummy/config/locales/en.yml
|
366
|
-
- test/dummy/config/routes.rb
|
367
|
-
- test/dummy/config/environment.rb
|
368
|
-
- test/dummy/config/database.yml
|
369
|
-
- test/dummy/config/secrets.yml
|
370
|
-
- test/dummy/config/boot.rb
|
371
|
-
- test/dummy/config/environments/production.rb
|
372
|
-
- test/dummy/config/environments/development.rb
|
373
|
-
- test/dummy/config/environments/test.rb
|
374
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
375
360
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
376
361
|
- test/dummy/config/initializers/assets.rb
|
362
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
377
363
|
- test/dummy/config/initializers/inflections.rb
|
364
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
365
|
+
- test/dummy/config/initializers/mime_types.rb
|
378
366
|
- test/dummy/config/initializers/session_store.rb
|
379
367
|
- test/dummy/config/initializers/wrap_parameters.rb
|
380
|
-
- test/dummy/config/
|
381
|
-
- test/dummy/config/
|
368
|
+
- test/dummy/config/locales/en.yml
|
369
|
+
- test/dummy/config/environments/production.rb
|
370
|
+
- test/dummy/config/environments/test.rb
|
371
|
+
- test/dummy/config/environments/development.rb
|
382
372
|
- test/dummy/config/application.rb
|
383
|
-
- test/
|
373
|
+
- test/dummy/config/routes.rb
|
374
|
+
- test/dummy/config/environment.rb
|
375
|
+
- test/dummy/config/secrets.yml
|
376
|
+
- test/dummy/config/database.yml
|
377
|
+
- test/dummy/config/boot.rb
|
378
|
+
- test/dummy/README.rdoc
|
379
|
+
- test/dummy/public/422.html
|
380
|
+
- test/dummy/public/500.html
|
381
|
+
- test/dummy/public/favicon.ico
|
382
|
+
- test/dummy/public/404.html
|
383
|
+
- test/dummy/app/controllers/application_controller.rb
|
384
|
+
- test/dummy/app/views/layouts/application.html.erb
|
385
|
+
- test/dummy/app/assets/stylesheets/application.css
|
386
|
+
- test/dummy/app/assets/javascripts/application.js
|
387
|
+
- test/dummy/app/helpers/application_helper.rb
|
384
388
|
- test/test_helper.rb
|
385
|
-
- test/fixtures/zuora_connect/app_instances.yml
|
386
|
-
- test/integration/navigation_test.rb
|
387
|
-
- test/models/zuora_connect/app_instance_test.rb
|
388
|
-
- test/zuora_connect_test.rb
|