appoptics_apm 4.8.0 → 4.9.0
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/.gitignore +5 -1
- data/.irbrc +3 -0
- data/.travis.yml +39 -24
- data/CONFIG.md +1 -1
- data/README.md +1 -1
- data/Rakefile +60 -53
- data/appoptics_apm.gemspec +1 -1
- data/build_gem_upload_to_packagecloud.sh +1 -6
- data/examples/SDK/01_basic_tracing.rb +0 -2
- data/ext/oboe_metal/README.md +69 -0
- data/ext/oboe_metal/src/VERSION +1 -1
- data/ext/oboe_metal/src/oboe.h +102 -71
- data/ext/oboe_metal/src/oboe.hpp +111 -69
- data/ext/oboe_metal/src/oboe_wrap.cxx +1470 -314
- data/lib/appoptics_apm.rb +1 -0
- data/lib/appoptics_apm/config.rb +11 -4
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller.rb +4 -4
- data/lib/appoptics_apm/frameworks/rails/inst/action_controller6.rb +50 -0
- data/lib/appoptics_apm/frameworks/rails/inst/action_view.rb +1 -1
- data/lib/appoptics_apm/frameworks/rails/inst/active_record.rb +2 -2
- data/lib/appoptics_apm/inst/logger_formatter.rb +4 -3
- data/lib/appoptics_apm/inst/rack.rb +11 -11
- data/lib/appoptics_apm/oboe_init_options.rb +17 -4
- data/lib/appoptics_apm/support/transaction_settings.rb +40 -16
- data/lib/appoptics_apm/support/x_trace_options.rb +110 -0
- data/lib/appoptics_apm/version.rb +1 -1
- data/lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb +37 -12
- data/oboe.code-workspace +66 -0
- data/scrap.rb +134 -0
- data/scrap_gemfile +5 -0
- data/scrap_gemfile.lock +140 -0
- metadata +12 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appoptics_apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maia Engeli
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2019-
|
13
|
+
date: 2019-09-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: json
|
@@ -117,6 +117,7 @@ files:
|
|
117
117
|
- ".dockerignore"
|
118
118
|
- ".github/ISSUE_TEMPLATE/bug-or-feature-request.md"
|
119
119
|
- ".gitignore"
|
120
|
+
- ".irbrc"
|
120
121
|
- ".rubocop.yml"
|
121
122
|
- ".travis.yml"
|
122
123
|
- ".yardopts"
|
@@ -132,6 +133,7 @@ files:
|
|
132
133
|
- build_gem_upload_to_packagecloud.sh
|
133
134
|
- examples/SDK/01_basic_tracing.rb
|
134
135
|
- examples/carrying_context.rb
|
136
|
+
- ext/oboe_metal/README.md
|
135
137
|
- ext/oboe_metal/extconf.rb
|
136
138
|
- ext/oboe_metal/lib/.keep
|
137
139
|
- ext/oboe_metal/noop/noop.c
|
@@ -161,6 +163,7 @@ files:
|
|
161
163
|
- lib/appoptics_apm/frameworks/rails/inst/action_controller3.rb
|
162
164
|
- lib/appoptics_apm/frameworks/rails/inst/action_controller4.rb
|
163
165
|
- lib/appoptics_apm/frameworks/rails/inst/action_controller5.rb
|
166
|
+
- lib/appoptics_apm/frameworks/rails/inst/action_controller6.rb
|
164
167
|
- lib/appoptics_apm/frameworks/rails/inst/action_controller_api.rb
|
165
168
|
- lib/appoptics_apm/frameworks/rails/inst/action_view.rb
|
166
169
|
- lib/appoptics_apm/frameworks/rails/inst/action_view_30.rb
|
@@ -216,6 +219,7 @@ files:
|
|
216
219
|
- lib/appoptics_apm/sdk/tracing.rb
|
217
220
|
- lib/appoptics_apm/support/transaction_metrics.rb
|
218
221
|
- lib/appoptics_apm/support/transaction_settings.rb
|
222
|
+
- lib/appoptics_apm/support/x_trace_options.rb
|
219
223
|
- lib/appoptics_apm/support_report.rb
|
220
224
|
- lib/appoptics_apm/test.rb
|
221
225
|
- lib/appoptics_apm/thread_local.rb
|
@@ -230,6 +234,10 @@ files:
|
|
230
234
|
- lib/oboe_metal.rb
|
231
235
|
- lib/rails/generators/appoptics_apm/install_generator.rb
|
232
236
|
- lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb
|
237
|
+
- oboe.code-workspace
|
238
|
+
- scrap.rb
|
239
|
+
- scrap_gemfile
|
240
|
+
- scrap_gemfile.lock
|
233
241
|
- yardoc_frontpage.md
|
234
242
|
homepage: https://www.appoptics.com/
|
235
243
|
licenses:
|
@@ -247,7 +255,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
247
255
|
requirements:
|
248
256
|
- - ">="
|
249
257
|
- !ruby/object:Gem::Version
|
250
|
-
version: 2.
|
258
|
+
version: 2.4.0
|
251
259
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
252
260
|
requirements:
|
253
261
|
- - ">="
|
@@ -255,7 +263,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
255
263
|
version: '0'
|
256
264
|
requirements: []
|
257
265
|
rubyforge_project:
|
258
|
-
rubygems_version: 2.7.
|
266
|
+
rubygems_version: 2.7.6.2
|
259
267
|
signing_key:
|
260
268
|
specification_version: 4
|
261
269
|
summary: AppOptics APM performance instrumentation gem for Ruby
|