appoptics_apm 4.8.4 → 4.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +7 -1
  3. data/.rubocop.yml +27 -6
  4. data/.travis.yml +24 -37
  5. data/.travis/bundle.sh +9 -0
  6. data/CONFIG.md +1 -1
  7. data/Gemfile +6 -6
  8. data/appoptics_apm.gemspec +6 -2
  9. data/examples/SDK/01_basic_tracing.rb +1 -1
  10. data/ext/oboe_metal/extconf.rb +6 -2
  11. data/ext/oboe_metal/noop/noop.c +2 -1
  12. data/ext/oboe_metal/src/VERSION +1 -1
  13. data/lib/appoptics_apm.rb +1 -3
  14. data/lib/appoptics_apm/api.rb +0 -1
  15. data/lib/appoptics_apm/api/logging.rb +6 -2
  16. data/lib/appoptics_apm/api/tracing.rb +4 -0
  17. data/lib/appoptics_apm/api/util.rb +5 -7
  18. data/lib/appoptics_apm/config.rb +16 -5
  19. data/lib/appoptics_apm/frameworks/grape.rb +3 -2
  20. data/lib/appoptics_apm/frameworks/padrino.rb +7 -37
  21. data/lib/appoptics_apm/frameworks/rails.rb +0 -1
  22. data/lib/appoptics_apm/frameworks/rails/inst/action_controller.rb +1 -1
  23. data/lib/appoptics_apm/frameworks/rails/inst/action_view.rb +12 -25
  24. data/lib/appoptics_apm/frameworks/rails/inst/active_record.rb +1 -1
  25. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils.rb +1 -1
  26. data/lib/appoptics_apm/frameworks/rails/inst/connection_adapters/utils5x.rb +1 -1
  27. data/lib/appoptics_apm/frameworks/sinatra.rb +4 -33
  28. data/lib/appoptics_apm/inst/curb.rb +6 -6
  29. data/lib/appoptics_apm/inst/faraday.rb +16 -4
  30. data/lib/appoptics_apm/inst/graphql.rb +240 -0
  31. data/lib/appoptics_apm/inst/grpc_client.rb +1 -1
  32. data/lib/appoptics_apm/inst/rack.rb +11 -11
  33. data/lib/appoptics_apm/oboe_init_options.rb +13 -3
  34. data/lib/appoptics_apm/sdk/custom_metrics.rb +2 -0
  35. data/lib/appoptics_apm/sdk/logging.rb +1 -1
  36. data/lib/appoptics_apm/sdk/tracing.rb +120 -2
  37. data/lib/appoptics_apm/support/transaction_metrics.rb +2 -1
  38. data/lib/appoptics_apm/support/transaction_settings.rb +40 -15
  39. data/lib/appoptics_apm/support/x_trace_options.rb +110 -0
  40. data/lib/appoptics_apm/version.rb +2 -2
  41. data/lib/appoptics_apm/xtrace.rb +7 -7
  42. data/lib/oboe_metal.rb +1 -1
  43. data/lib/rails/generators/appoptics_apm/install_generator.rb +23 -21
  44. data/lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb +68 -30
  45. metadata +40 -21
  46. data/Rakefile +0 -234
  47. data/build_gem.sh +0 -15
  48. data/build_gem_upload_to_packagecloud.sh +0 -15
  49. data/lib/appoptics_apm/api/profiling.rb +0 -203
  50. data/lib/appoptics_apm/frameworks/rails/inst/action_controller3.rb +0 -55
  51. data/lib/appoptics_apm/frameworks/rails/inst/action_view_30.rb +0 -50
  52. data/lib/appoptics_apm/legacy_method_profiling.rb +0 -90
  53. data/lib/appoptics_apm/method_profiling.rb +0 -33
  54. data/lib/oboe/README +0 -2
  55. data/lib/oboe/backward_compatibility.rb +0 -80
  56. data/lib/oboe/inst/rack.rb +0 -11
@@ -7,8 +7,8 @@ module AppOpticsAPM
7
7
  # appoptics_apm.gemspec during gem build process
8
8
  module Version
9
9
  MAJOR = 4 # breaking,
10
- MINOR = 8 # feature,
11
- PATCH = 4 # fix => BFF
10
+ MINOR = 11 # feature,
11
+ PATCH = 1 # fix => BFF
12
12
 
13
13
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
14
14
  end
@@ -97,16 +97,16 @@ module AppOpticsAPM
97
97
  # +finish+ is the context returned to us (as an HTTP response header
98
98
  # if that be the case)
99
99
  #
100
- def continue_service_context(start, finish)
101
- if AppOpticsAPM::XTrace.valid?(finish) && AppOpticsAPM.tracing?
100
+ def continue_service_context(start_xtrace, end_xtrace)
101
+ if AppOpticsAPM::XTrace.valid?(end_xtrace) && AppOpticsAPM.tracing?
102
102
 
103
- # Assure that we received back a valid X-Trace with the same task_id
103
+ # Make sure that we received back a valid X-Trace with the same task_id
104
104
  # and the sampling bit is set, otherwise it is a response from a non-sampling service
105
- if AppOpticsAPM::XTrace.task_id(start) == AppOpticsAPM::XTrace.task_id(finish) &&
106
- AppOpticsAPM::XTrace.sampled?(finish)
107
- AppOpticsAPM::Context.fromString(finish)
105
+ if AppOpticsAPM::XTrace.task_id(start_xtrace) == AppOpticsAPM::XTrace.task_id(end_xtrace) &&
106
+ AppOpticsAPM::XTrace.sampled?(end_xtrace)
107
+ AppOpticsAPM::Context.fromString(end_xtrace)
108
108
  else
109
- AppOpticsAPM.logger.debug "[XTrace] Sampling flag unset or mismatched start and finish ids:\n#{start}\n#{finish}"
109
+ AppOpticsAPM.logger.debug "[XTrace] Sampling flag unset or mismatched start and finish ids:\n#{start_xtrace}\n#{end_xtrace}"
110
110
  end
111
111
  end
112
112
  end
data/lib/oboe_metal.rb CHANGED
@@ -5,7 +5,7 @@ require 'thread'
5
5
 
6
6
  # Disable docs and Camelcase warns since we're implementing
7
7
  # an interface here. See OboeBase for details.
8
- # rubocop:disable Style/Documentation, Style/MethodName
8
+ # rubocop:disable Style/Documentation, Naming/MethodName
9
9
  module AppOpticsAPM
10
10
  extend AppOpticsAPMBase
11
11
  include Oboe_metal
@@ -20,26 +20,28 @@ module AppOpticsAPM
20
20
 
21
21
  private
22
22
 
23
- def print_header
24
- say ""
25
- say shell.set_color "Welcome to the AppOpticsAPM Ruby instrumentation setup.", :green, :bold
26
- say ""
27
- say shell.set_color "Documentation Links", :magenta
28
- say "-------------------"
29
- say ""
30
- say "AppOpticsAPM Installation Overview:"
31
- say "http://docs.appoptics.solarwinds.com/AppOpticsAPM/install-instrumentation.html"
32
- say ""
33
- say "More information on instrumenting Ruby applications can be found here:"
34
- say "http://docs.appoptics.solarwinds.com/Instrumentation/ruby.html#installing-ruby-instrumentation"
35
- end
36
-
37
- def print_footer
38
- say ""
39
- say "You can change configuration values in the future by modifying config/initializers/appoptics_apm.rb"
40
- say ""
41
- say "Thanks! Creating the AppOpticsAPM initializer..."
42
- say ""
43
- end
23
+ # rubocop:disable Metrics/MethodLength
24
+ def print_header
25
+ say ""
26
+ say shell.set_color "Welcome to the AppOpticsAPM Ruby instrumentation setup.", :green, :bold
27
+ say ""
28
+ say shell.set_color "Documentation Links", :magenta
29
+ say "-------------------"
30
+ say ""
31
+ say "AppOpticsAPM Installation Overview:"
32
+ say "http://docs.appoptics.solarwinds.com/AppOpticsAPM/install-instrumentation.html"
33
+ say ""
34
+ say "More information on instrumenting Ruby applications can be found here:"
35
+ say "http://docs.appoptics.solarwinds.com/Instrumentation/ruby.html#installing-ruby-instrumentation"
36
+ end
37
+ # rubocop:enable Metrics/MethodLength
38
+
39
+ def print_footer
40
+ say ""
41
+ say "You can change configuration values in the future by modifying config/initializers/appoptics_apm.rb"
42
+ say ""
43
+ say "Thanks! Creating the AppOpticsAPM initializer..."
44
+ say ""
45
+ end
44
46
  end
45
47
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # AppOpticsAPM Initializer (for the appoptics_apm gem)
2
4
  # https://www.appoptics.com/
3
5
  #
@@ -50,7 +52,7 @@ if defined?(AppOpticsAPM::Config)
50
52
  AppOpticsAPM::Config[:verbose] = false
51
53
 
52
54
  #
53
- # Turn tracing on or off
55
+ # Turn Tracing on or off
54
56
  #
55
57
  # By default tracing is set to :enabled, the other option is :disabled.
56
58
  # :enabled means that sampling will be done according to the current
@@ -61,31 +63,41 @@ if defined?(AppOpticsAPM::Config)
61
63
  #
62
64
  AppOpticsAPM::Config[:tracing_mode] = :enabled
63
65
 
66
+ #
67
+ # Turn Trigger Tracing on or off
68
+ #
69
+ # By default trigger tracing is :enabled, the other option is :disabled.
70
+ # It allows to use the X-Trace-Options header to force a request to be
71
+ # traced (within rate limits set for trigger tracing)
72
+ #
73
+ AppOpticsAPM::Config[:trigger_tracing_mode] = :enabled
74
+
64
75
  #
65
76
  # Trace Context in Logs
66
77
  #
67
- # Configure if and when the traceId should be included in application logs.
78
+ # Configure if and when the Trace ID should be included in application logs.
68
79
  # Common Ruby and Rails loggers are auto-instrumented, so that they can include
69
- # the current traceId in log messages.
80
+ # the current Trace ID in log messages.
70
81
  #
71
82
  # The added string will look like: "ao.traceId=7435A9FE510AE4533414D425DADF4E180D2B4E36-0"
72
83
  # It ends in '-1' if the request is sampled and in '-0' otherwise.
73
84
  #
74
85
  # The following options are available:
75
86
  # :never (default)
76
- # :sampled only include the traceId of sampled requests
77
- # :traced include the traceId for all traced requests
78
- # :always always add a traceId, it will be '0000000000000000000000000000000000000000-0'
87
+ # :sampled only include the Trace ID of sampled requests
88
+ # :traced include the Trace ID for all traced requests
89
+ # :always always add a Trace ID, it will be '0000000000000000000000000000000000000000-0'
79
90
  # when there is no tracing context.
80
91
  #
81
92
  AppOpticsAPM::Config[:log_traceId] = :never
82
93
 
83
94
  #
84
- # Prepend domain to transaction name
95
+ # Prepend Domain to Transaction Name
85
96
  #
86
- # If this is set to `true` transaction names will be composed as `my.host.com/controller.action` instead of
87
- # `controller.action`. This configuration applies to all transaction names, whether deduced by the instrumentation
88
- # or implicitly set.
97
+ # If this is set to `true` transaction names will be composed as
98
+ # `my.host.com/controller.action` instead of `controller.action`.
99
+ # This configuration applies to all transaction names, whether deduced by the
100
+ # instrumentation or implicitly set.
89
101
  #
90
102
  AppOpticsAPM::Config[:transaction_name][:prepend_domain] = false
91
103
 
@@ -100,6 +112,25 @@ if defined?(AppOpticsAPM::Config)
100
112
  AppOpticsAPM::Config[:sanitize_sql_regexp] = '(\'[^\']*\'|\d*\.\d+|\d+|NULL)'
101
113
  AppOpticsAPM::Config[:sanitize_sql_opts] = Regexp::IGNORECASE
102
114
 
115
+ #
116
+ # GraphQL
117
+ #
118
+ # Enable tracing for GraphQL.
119
+ # (true | false, default: true)
120
+ AppOpticsAPM::Config[:graphql][:enabled] = true
121
+ # Replace query arguments with a '?' when sent with a trace.
122
+ # (true | false, default: true)
123
+ AppOpticsAPM::Config[:graphql][:sanitize] = true
124
+ # Remove comments from queries when sent with a trace.
125
+ # (true | false, default: true)
126
+ AppOpticsAPM::Config[:graphql][:remove_comments] = true
127
+ # Create a transaction name by combining
128
+ # "query" or "mutation" with the first word of the query.
129
+ # This overwrites the default transaction name, which is a combination of
130
+ # controller + action and would be the same for all graphql queries.
131
+ # (true | false, default: true)
132
+ AppOpticsAPM::Config[:graphql][:transaction_name] = true
133
+
103
134
  #
104
135
  # Do Not Trace - DNT
105
136
  #
@@ -126,7 +157,6 @@ if defined?(AppOpticsAPM::Config)
126
157
  #
127
158
  AppOpticsAPM::Config[:dnt_regexp] = '\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|otf|eot|ttf|woff|woff2|svg|less)(\?.+){0,1}$'
128
159
  AppOpticsAPM::Config[:dnt_opts] = Regexp::IGNORECASE
129
- #
130
160
 
131
161
  #
132
162
  # Transaction Settings
@@ -154,21 +184,20 @@ if defined?(AppOpticsAPM::Config)
154
184
  #
155
185
  AppOpticsAPM::Config[:transaction_settings] = {
156
186
  url: [
157
- # {
158
- # extensions: %w['long_job'],
159
- # tracing: :disabled
160
- # },
161
- # {
162
- # regexp: '^.*\/long_job\/.*$',
163
- # opts: Regexp::IGNORECASE,
164
- # tracing: :disabled
165
- # },
166
- # {
167
- # regexp: /batch/,
168
- # }
187
+ # {
188
+ # extensions: %w['long_job'],
189
+ # tracing: :disabled
190
+ # },
191
+ # {
192
+ # regexp: '^.*\/long_job\/.*$',
193
+ # opts: Regexp::IGNORECASE,
194
+ # tracing: :disabled
195
+ # },
196
+ # {
197
+ # regexp: /batch/,
198
+ # }
169
199
  ]
170
200
  }
171
- #
172
201
 
173
202
  #
174
203
  # Blacklist urls
@@ -182,7 +211,6 @@ if defined?(AppOpticsAPM::Config)
182
211
  # Example: AppOpticsAPM::Config[:blacklist] = ['google.com']
183
212
  #
184
213
  AppOpticsAPM::Config[:blacklist] = []
185
- #
186
214
 
187
215
  #
188
216
  # Rails Exception Logging
@@ -193,7 +221,20 @@ if defined?(AppOpticsAPM::Config)
193
221
  # report all raised exceptions regardless.
194
222
  #
195
223
  AppOpticsAPM::Config[:report_rescued_errors] = false
224
+
225
+ #
226
+ # EC2 Metadata Fetching Timeout
227
+ #
228
+ # The timeout can be in the range 0 - 3000 (milliseconds)
229
+ # Setting to 0 milliseconds effectively disables fetching from
230
+ # the metadata URL (not waiting), and should only be used if
231
+ # not running on EC2 / Openstack to minimize agent start up time.
196
232
  #
233
+ AppOpticsAPM::Config[:ec2_metadata_timeout] = 1000
234
+
235
+ #############################################
236
+ ## SETTINGS FOR INDIVIDUAL GEMS/FRAMEWORKS ##
237
+ #############################################
197
238
 
198
239
  #
199
240
  # Bunny Controller and Action
@@ -213,7 +254,6 @@ if defined?(AppOpticsAPM::Config)
213
254
  #
214
255
  AppOpticsAPM::Config[:bunnyconsumer][:controller] = :app_id
215
256
  AppOpticsAPM::Config[:bunnyconsumer][:action] = :type
216
- #
217
257
 
218
258
  #
219
259
  # Enabling/Disabling Instrumentation
@@ -235,7 +275,7 @@ if defined?(AppOpticsAPM::Config)
235
275
  AppOpticsAPM::Config[:dalli][:enabled] = true
236
276
  AppOpticsAPM::Config[:delayed_jobclient][:enabled] = true
237
277
  AppOpticsAPM::Config[:delayed_jobworker][:enabled] = true
238
- AppOpticsAPM::Config[:em_http_request][:enabled] = false
278
+ # AppOpticsAPM::Config[:em_http_request][:enabled] = false # not supported anymore
239
279
  AppOpticsAPM::Config[:excon][:enabled] = true
240
280
  AppOpticsAPM::Config[:faraday][:enabled] = true
241
281
  AppOpticsAPM::Config[:grpc_client][:enabled] = true
@@ -257,7 +297,6 @@ if defined?(AppOpticsAPM::Config)
257
297
  AppOpticsAPM::Config[:sidekiqworker][:enabled] = true
258
298
  AppOpticsAPM::Config[:sinatra][:enabled] = true
259
299
  AppOpticsAPM::Config[:typhoeus][:enabled] = true
260
- #
261
300
 
262
301
  #
263
302
  # Argument logging
@@ -280,7 +319,6 @@ if defined?(AppOpticsAPM::Config)
280
319
  AppOpticsAPM::Config[:sidekiqclient][:log_args] = true
281
320
  AppOpticsAPM::Config[:sidekiqworker][:log_args] = true
282
321
  AppOpticsAPM::Config[:typhoeus][:log_args] = true
283
- #
284
322
 
285
323
  #
286
324
  # Enabling/Disabling Backtrace Collection
@@ -301,7 +339,7 @@ if defined?(AppOpticsAPM::Config)
301
339
  AppOpticsAPM::Config[:dalli][:collect_backtraces] = false
302
340
  AppOpticsAPM::Config[:delayed_jobclient][:collect_backtraces] = false
303
341
  AppOpticsAPM::Config[:delayed_jobworker][:collect_backtraces] = false
304
- AppOpticsAPM::Config[:em_http_request][:collect_backtraces] = true
342
+ # AppOpticsAPM::Config[:em_http_request][:collect_backtraces] = true # not supported anymore
305
343
  AppOpticsAPM::Config[:excon][:collect_backtraces] = true
306
344
  AppOpticsAPM::Config[:faraday][:collect_backtraces] = false
307
345
  AppOpticsAPM::Config[:grape][:collect_backtraces] = true
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.8.4
4
+ version: 4.11.1
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-09-10 00:00:00.000000000 Z
13
+ date: 2020-02-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: json
@@ -30,20 +30,20 @@ dependencies:
30
30
  name: no_proxy_fix
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - "~>"
33
+ - - ">="
34
34
  - !ruby/object:Gem::Version
35
35
  version: 0.1.2
36
- - - ">="
36
+ - - "~>"
37
37
  - !ruby/object:Gem::Version
38
38
  version: 0.1.2
39
39
  type: :runtime
40
40
  prerelease: false
41
41
  version_requirements: !ruby/object:Gem::Requirement
42
42
  requirements:
43
- - - "~>"
43
+ - - ">="
44
44
  - !ruby/object:Gem::Version
45
45
  version: 0.1.2
46
- - - ">="
46
+ - - "~>"
47
47
  - !ruby/object:Gem::Version
48
48
  version: 0.1.2
49
49
  - !ruby/object:Gem::Dependency
@@ -60,6 +60,20 @@ dependencies:
60
60
  - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: 0.9.0
63
+ - !ruby/object:Gem::Dependency
64
+ name: irb
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 1.0.0
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: 1.0.0
63
77
  - !ruby/object:Gem::Dependency
64
78
  name: byebug
65
79
  requirement: !ruby/object:Gem::Requirement
@@ -88,6 +102,20 @@ dependencies:
88
102
  - - ">="
89
103
  - !ruby/object:Gem::Version
90
104
  version: 1.5.0
105
+ - !ruby/object:Gem::Dependency
106
+ name: minitest-focus
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: 1.1.2
112
+ type: :development
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: 1.1.2
91
119
  - !ruby/object:Gem::Dependency
92
120
  name: benchmark-ips
93
121
  requirement: !ruby/object:Gem::Requirement
@@ -119,17 +147,15 @@ files:
119
147
  - ".gitignore"
120
148
  - ".rubocop.yml"
121
149
  - ".travis.yml"
150
+ - ".travis/bundle.sh"
122
151
  - ".yardopts"
123
152
  - CHANGELOG.md
124
153
  - CONFIG.md
125
154
  - Gemfile
126
155
  - LICENSE
127
156
  - README.md
128
- - Rakefile
129
157
  - appoptics_apm.gemspec
130
158
  - bin/appoptics_apm_config
131
- - build_gem.sh
132
- - build_gem_upload_to_packagecloud.sh
133
159
  - examples/SDK/01_basic_tracing.rb
134
160
  - examples/carrying_context.rb
135
161
  - ext/oboe_metal/README.md
@@ -150,7 +176,6 @@ files:
150
176
  - lib/appoptics_apm/api/logging.rb
151
177
  - lib/appoptics_apm/api/memcache.rb
152
178
  - lib/appoptics_apm/api/metrics.rb
153
- - lib/appoptics_apm/api/profiling.rb
154
179
  - lib/appoptics_apm/api/tracing.rb
155
180
  - lib/appoptics_apm/api/util.rb
156
181
  - lib/appoptics_apm/base.rb
@@ -159,13 +184,11 @@ files:
159
184
  - lib/appoptics_apm/frameworks/padrino.rb
160
185
  - lib/appoptics_apm/frameworks/rails.rb
161
186
  - lib/appoptics_apm/frameworks/rails/inst/action_controller.rb
162
- - lib/appoptics_apm/frameworks/rails/inst/action_controller3.rb
163
187
  - lib/appoptics_apm/frameworks/rails/inst/action_controller4.rb
164
188
  - lib/appoptics_apm/frameworks/rails/inst/action_controller5.rb
165
189
  - lib/appoptics_apm/frameworks/rails/inst/action_controller6.rb
166
190
  - lib/appoptics_apm/frameworks/rails/inst/action_controller_api.rb
167
191
  - lib/appoptics_apm/frameworks/rails/inst/action_view.rb
168
- - lib/appoptics_apm/frameworks/rails/inst/action_view_30.rb
169
192
  - lib/appoptics_apm/frameworks/rails/inst/active_record.rb
170
193
  - lib/appoptics_apm/frameworks/rails/inst/connection_adapters/mysql.rb
171
194
  - lib/appoptics_apm/frameworks/rails/inst/connection_adapters/mysql2.rb
@@ -182,6 +205,7 @@ files:
182
205
  - lib/appoptics_apm/inst/em-http-request.rb
183
206
  - lib/appoptics_apm/inst/excon.rb
184
207
  - lib/appoptics_apm/inst/faraday.rb
208
+ - lib/appoptics_apm/inst/graphql.rb
185
209
  - lib/appoptics_apm/inst/grpc_client.rb
186
210
  - lib/appoptics_apm/inst/grpc_server.rb
187
211
  - lib/appoptics_apm/inst/http.rb
@@ -203,10 +227,8 @@ files:
203
227
  - lib/appoptics_apm/inst/twitter-cassandra.rb
204
228
  - lib/appoptics_apm/inst/typhoeus.rb
205
229
  - lib/appoptics_apm/instrumentation.rb
206
- - lib/appoptics_apm/legacy_method_profiling.rb
207
230
  - lib/appoptics_apm/loading.rb
208
231
  - lib/appoptics_apm/logger.rb
209
- - lib/appoptics_apm/method_profiling.rb
210
232
  - lib/appoptics_apm/noop/README.md
211
233
  - lib/appoptics_apm/noop/context.rb
212
234
  - lib/appoptics_apm/noop/metadata.rb
@@ -218,6 +240,7 @@ files:
218
240
  - lib/appoptics_apm/sdk/tracing.rb
219
241
  - lib/appoptics_apm/support/transaction_metrics.rb
220
242
  - lib/appoptics_apm/support/transaction_settings.rb
243
+ - lib/appoptics_apm/support/x_trace_options.rb
221
244
  - lib/appoptics_apm/support_report.rb
222
245
  - lib/appoptics_apm/test.rb
223
246
  - lib/appoptics_apm/thread_local.rb
@@ -226,16 +249,13 @@ files:
226
249
  - lib/appoptics_apm/xtrace.rb
227
250
  - lib/joboe_metal.rb
228
251
  - lib/oboe.rb
229
- - lib/oboe/README
230
- - lib/oboe/backward_compatibility.rb
231
- - lib/oboe/inst/rack.rb
232
252
  - lib/oboe_metal.rb
233
253
  - lib/rails/generators/appoptics_apm/install_generator.rb
234
254
  - lib/rails/generators/appoptics_apm/templates/appoptics_apm_initializer.rb
235
255
  - yardoc_frontpage.md
236
256
  homepage: https://www.appoptics.com/
237
257
  licenses:
238
- - Librato Open License, Version 1.0
258
+ - Librato Open License, Version 1.0, https://bit.ly/2Kmm0mN
239
259
  metadata:
240
260
  changelog_uri: https://github.com/appoptics/appoptics-apm-ruby/releases
241
261
  documentation_uri: https://docs.appoptics.com/kb/apm_tracing/ruby/
@@ -249,15 +269,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
249
269
  requirements:
250
270
  - - ">="
251
271
  - !ruby/object:Gem::Version
252
- version: 2.0.0
272
+ version: 2.4.0
253
273
  required_rubygems_version: !ruby/object:Gem::Requirement
254
274
  requirements:
255
275
  - - ">="
256
276
  - !ruby/object:Gem::Version
257
277
  version: '0'
258
278
  requirements: []
259
- rubyforge_project:
260
- rubygems_version: 2.6.11
279
+ rubygems_version: 3.0.3
261
280
  signing_key:
262
281
  specification_version: 4
263
282
  summary: AppOptics APM performance instrumentation gem for Ruby