opener-webservice 2.1.2 → 2.1.3

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
  SHA1:
3
- metadata.gz: 0a1eaa82ba5b1cb403a1263988ec10ee7419931b
4
- data.tar.gz: d2c6d19fc9d80eac6314a3faa0b96129aaf81286
3
+ metadata.gz: 0b9a0d7f72b7b86539f4a3dd8b04610a7cf90dce
4
+ data.tar.gz: f1b8a5540c7938cfee71a5afbb055bd66b325167
5
5
  SHA512:
6
- metadata.gz: 6a35be06aeabdb263d36be39ff530c05a327bb372f6b14d76cb9bc0fc678fa33d5cddeb01ac8600bc74b5093babfbe53621558c2b07a0adb6156059b412cf89a
7
- data.tar.gz: 4dc9aec3b01e06f3ea1dc684adcaf9a88224f7e14b5aba6e3b627c225a83fa2ffdbef33444fbf1bdac072ac85d5b3e937ede868c4702d79f97bb2740bfb9f066
6
+ metadata.gz: 1955c6e951925ca16b085bc3db87c4b3181eecef36f800a6fa7af07a0d95d8d199dbe613cbed745da62b1d92ee5070d6d1c4b3a22a87a41158bf2b2b7ed52368
7
+ data.tar.gz: 8105f3b2517aa72a2fbfdbd789ba0cc2ffcd4991b81f9fa3f786ec02fb7cf4e2fa5e834e758cecdd58ab00a3fbe740a7c04f2f8b803895ae6a200ebc665297b6
@@ -0,0 +1,206 @@
1
+ # Here are the settings that are common to all environments
2
+ common: &default_settings
3
+ # ============================== LICENSE KEY ===============================
4
+
5
+ # You must specify the license key associated with your New Relic
6
+ # account. This key binds your Agent's data to your account in the
7
+ # New Relic service.
8
+ license_key: <%= ENV['NEWRELIC_TOKEN'] %>
9
+
10
+ # Agent Enabled (Ruby/Rails Only)
11
+ # Use this setting to force the agent to run or not run.
12
+ # Default is 'auto' which means the agent will install and run only
13
+ # if a valid dispatcher such as Mongrel is running. This prevents
14
+ # it from running with Rake or the console. Set to false to
15
+ # completely turn the agent off regardless of the other settings.
16
+ # Valid values are true, false and auto.
17
+ #
18
+ agent_enabled: true
19
+
20
+ # Application Name Set this to be the name of your application as
21
+ # you'd like it show up in New Relic. The service will then auto-map
22
+ # instances of your application into an "application" on your
23
+ # dashboard page. If you want to map this instance into multiple
24
+ # apps, like "AJAX Requests" and "All UI" then specify a semicolon
25
+ # separated list of up to three distinct names, or a yaml list.
26
+ # Defaults to the capitalized RAILS_ENV or RACK_ENV (i.e.,
27
+ # Production, Staging, etc)
28
+ #
29
+ # Example:
30
+ #
31
+ # app_name:
32
+ # - Ajax Service
33
+ # - All Services
34
+ #
35
+ app_name: "<%= ENV['APP_NAME'] %>"
36
+
37
+ # When "true", the agent collects performance data about your
38
+ # application and reports this data to the New Relic service at
39
+ # newrelic.com. This global switch is normally overridden for each
40
+ # environment below. (formerly called 'enabled')
41
+ # monitor_mode: true
42
+
43
+ # Developer mode should be off in every environment but
44
+ # development as it has very high overhead in memory.
45
+ developer_mode: false
46
+
47
+ # The newrelic agent generates its own log file to keep its logging
48
+ # information separate from that of your application. Specify its
49
+ # log level here.
50
+ log_level: error
51
+
52
+ # Optionally set the path to the log file This is expanded from the
53
+ # root directory (may be relative or absolute, e.g. 'log/' or
54
+ # '/var/log/') The agent will attempt to create this directory if it
55
+ # does not exist.
56
+ log_file_path: STDOUT
57
+
58
+ # Optionally set the name of the log file, defaults to 'newrelic_agent.log'
59
+ #log_file_name: 'newrelic_agent.log'
60
+
61
+ # The newrelic agent communicates with the service via https by default. This
62
+ # prevents eavesdropping on the performance metrics transmitted by the agent.
63
+ # The encryption required by SSL introduces a nominal amount of CPU overhead,
64
+ # which is performed asynchronously in a background thread. If you'd prefer
65
+ # to send your metrics over http uncomment the following line.
66
+ ssl: true
67
+
68
+ #============================== Browser Monitoring ===============================
69
+ # New Relic Real User Monitoring gives you insight into the performance real users are
70
+ # experiencing with your website. This is accomplished by measuring the time it takes for
71
+ # your users' browsers to download and render your web pages by injecting a small amount
72
+ # of JavaScript code into the header and footer of each page.
73
+ browser_monitoring:
74
+ # By default the agent automatically injects the monitoring JavaScript
75
+ # into web pages. Set this attribute to false to turn off this behavior.
76
+ auto_instrument: false
77
+
78
+ # Proxy settings for connecting to the New Relic server.
79
+ #
80
+ # If a proxy is used, the host setting is required. Other settings
81
+ # are optional. Default port is 8080.
82
+ #
83
+ # proxy_host: hostname
84
+ # proxy_port: 8080
85
+ # proxy_user:
86
+ # proxy_pass:
87
+
88
+ # The agent can optionally log all data it sends to New Relic servers to a
89
+ # separate log file for human inspection and auditing purposes. To enable this
90
+ # feature, change 'enabled' below to true.
91
+ # See: https://newrelic.com/docs/ruby/audit-log
92
+ audit_log:
93
+ enabled: false
94
+
95
+ # Tells transaction tracer and error collector (when enabled)
96
+ # whether or not to capture HTTP params. When true, frameworks can
97
+ # exclude HTTP parameters from being captured.
98
+ # Rails: the RoR filter_parameter_logging excludes parameters
99
+ # Java: create a config setting called "ignored_params" and set it to
100
+ # a comma separated list of HTTP parameter names.
101
+ # ex: ignored_params: credit_card, ssn, password
102
+ capture_params: false
103
+
104
+ # Transaction tracer captures deep information about slow
105
+ # transactions and sends this to the New Relic service once a
106
+ # minute. Included in the transaction is the exact call sequence of
107
+ # the transactions including any SQL statements issued.
108
+ transaction_tracer:
109
+
110
+ # Transaction tracer is enabled by default. Set this to false to
111
+ # turn it off. This feature is only available at the Professional
112
+ # and above product levels.
113
+ enabled: true
114
+
115
+ # Threshold in seconds for when to collect a transaction
116
+ # trace. When the response time of a controller action exceeds
117
+ # this threshold, a transaction trace will be recorded and sent to
118
+ # New Relic. Valid values are any float value, or (default) "apdex_f",
119
+ # which will use the threshold for an dissatisfying Apdex
120
+ # controller action - four times the Apdex T value.
121
+ transaction_threshold: 0
122
+
123
+ # When transaction tracer is on, SQL statements can optionally be
124
+ # recorded. The recorder has three modes, "off" which sends no
125
+ # SQL, "raw" which sends the SQL statement in its original form,
126
+ # and "obfuscated", which strips out numeric and string literals.
127
+ record_sql: obfuscated
128
+
129
+ # Threshold in seconds for when to collect stack trace for a SQL
130
+ # call. In other words, when SQL statements exceed this threshold,
131
+ # then capture and send to New Relic the current stack trace. This is
132
+ # helpful for pinpointing where long SQL calls originate from.
133
+ stack_trace_threshold: 0.500
134
+
135
+ # Determines whether the agent will capture query plans for slow
136
+ # SQL queries. Only supported in mysql and postgres. Should be
137
+ # set to false when using other adapters.
138
+ # explain_enabled: true
139
+
140
+ # Threshold for query execution time below which query plans will
141
+ # not be captured. Relevant only when `explain_enabled` is true.
142
+ # explain_threshold: 0.5
143
+
144
+ # Error collector captures information about uncaught exceptions and
145
+ # sends them to New Relic for viewing
146
+ error_collector:
147
+
148
+ # Error collector is enabled by default. Set this to false to turn
149
+ # it off. This feature is only available at the Professional and above
150
+ # product levels.
151
+ enabled: false
152
+
153
+ # To stop specific errors from reporting to New Relic, set this property
154
+ # to comma-separated values. Default is to ignore routing errors,
155
+ # which are how 404's get triggered.
156
+ ignore_errors: "ActionController::RoutingError,Sinatra::NotFound"
157
+
158
+ # If you're interested in capturing memcache keys as though they
159
+ # were SQL uncomment this flag. Note that this does increase
160
+ # overhead slightly on every memcached call, and can have security
161
+ # implications if your memcached keys are sensitive
162
+ # capture_memcache_keys: true
163
+
164
+ # Application Environments
165
+ # ------------------------------------------
166
+ # Environment-specific settings are in this section.
167
+ # For Rails applications, RAILS_ENV is used to determine the environment.
168
+ # For Java applications, pass -Dnewrelic.environment <environment> to set
169
+ # the environment.
170
+
171
+ # NOTE if your application has other named environments, you should
172
+ # provide newrelic configuration settings for these environments here.
173
+
174
+ development:
175
+ <<: *default_settings
176
+ # Turn on communication to New Relic service in development mode
177
+ monitor_mode: false
178
+ app_name: "<%= ENV['APP_NAME'] %> (Development)"
179
+
180
+ test:
181
+ <<: *default_settings
182
+ # It almost never makes sense to turn on the agent when running
183
+ # unit, functional or integration tests or the like.
184
+ monitor_mode: false
185
+
186
+ # Turn on the agent in production for 24x7 monitoring. NewRelic
187
+ # testing shows an average performance impact of < 5 ms per
188
+ # transaction, you can leave this on all the time without
189
+ # incurring any user-visible performance degradation.
190
+ production:
191
+ <<: *default_settings
192
+ monitor_mode: true
193
+
194
+ error_collector:
195
+ enabled: true
196
+
197
+ # Many applications have a staging environment which behaves
198
+ # identically to production. Support for that environment is provided
199
+ # here. By default, the staging environment has the agent turned on.
200
+ staging:
201
+ <<: *default_settings
202
+ monitor_mode: true
203
+ app_name: "<%= ENV['APP_NAME'] %> (Staging)"
204
+
205
+ error_collector:
206
+ enabled: true
@@ -1,5 +1,5 @@
1
1
  module Opener
2
2
  module Webservice
3
- VERSION = '2.1.2'
3
+ VERSION = '2.1.3'
4
4
  end # Webservice
5
5
  end # Opener
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.license = 'Apache 2.0'
11
11
 
12
12
  spec.files = Dir.glob([
13
+ 'config/**/*',
13
14
  'lib/**/*',
14
15
  '*.gemspec',
15
16
  'README.md',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opener-webservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - development@olery.com
@@ -234,6 +234,7 @@ extra_rdoc_files: []
234
234
  files:
235
235
  - LICENSE.txt
236
236
  - README.md
237
+ - config/newrelic.yml
237
238
  - lib/opener/webservice.rb
238
239
  - lib/opener/webservice/configuration.rb
239
240
  - lib/opener/webservice/error_handler.rb