instana 1.193.4 → 1.195.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +20 -2
  3. data/.rubocop.yml +7 -0
  4. data/Appraisals +20 -1
  5. data/Gemfile +3 -0
  6. data/LICENSE +2 -1
  7. data/Rakefile +3 -0
  8. data/benchmarks/10k-rack-traces.rb +3 -0
  9. data/benchmarks/Gemfile +4 -0
  10. data/benchmarks/id_generation.rb +4 -0
  11. data/benchmarks/opentracing.rb +4 -0
  12. data/benchmarks/rack_vanilla_vs_traced.rb +3 -0
  13. data/benchmarks/stackprof_rack_tracing.rb +3 -0
  14. data/benchmarks/time_processing.rb +4 -0
  15. data/bin/console +3 -0
  16. data/docker-compose.yml +20 -0
  17. data/examples/opentracing.rb +4 -0
  18. data/examples/tracing.rb +4 -0
  19. data/extras/license_header.rb +44 -0
  20. data/gemfiles/aws_30.gemfile +21 -0
  21. data/gemfiles/cuba_30.gemfile +3 -0
  22. data/gemfiles/dalli_20.gemfile +3 -0
  23. data/gemfiles/excon_02.gemfile +3 -0
  24. data/gemfiles/excon_021.gemfile +18 -0
  25. data/gemfiles/excon_079.gemfile +18 -0
  26. data/gemfiles/graphql_10.gemfile +3 -0
  27. data/gemfiles/grpc_10.gemfile +3 -0
  28. data/gemfiles/net_http_01.gemfile +3 -0
  29. data/gemfiles/rack_16.gemfile +3 -0
  30. data/gemfiles/rack_20.gemfile +3 -0
  31. data/gemfiles/rails_42.gemfile +3 -0
  32. data/gemfiles/rails_50.gemfile +3 -0
  33. data/gemfiles/rails_52.gemfile +3 -0
  34. data/gemfiles/rails_60.gemfile +3 -0
  35. data/gemfiles/redis_40.gemfile +3 -0
  36. data/gemfiles/resque_122.gemfile +3 -0
  37. data/gemfiles/resque_20.gemfile +3 -0
  38. data/gemfiles/rest_client_16.gemfile +3 -0
  39. data/gemfiles/rest_client_20.gemfile +3 -0
  40. data/gemfiles/roda_20.gemfile +3 -0
  41. data/gemfiles/roda_30.gemfile +3 -0
  42. data/gemfiles/shoryuken_50.gemfile +19 -0
  43. data/gemfiles/sidekiq_42.gemfile +3 -0
  44. data/gemfiles/sidekiq_50.gemfile +3 -0
  45. data/gemfiles/sinatra_14.gemfile +3 -0
  46. data/instana.gemspec +4 -0
  47. data/lib/instana.rb +3 -0
  48. data/lib/instana/activator.rb +3 -0
  49. data/lib/instana/activators/action_cable.rb +24 -0
  50. data/lib/instana/activators/action_controller_api.rb +3 -0
  51. data/lib/instana/activators/action_controller_base.rb +3 -0
  52. data/lib/instana/activators/action_view.rb +3 -0
  53. data/lib/instana/activators/active_record.rb +3 -0
  54. data/lib/instana/activators/aws_sdk_dynamodb.rb +20 -0
  55. data/lib/instana/activators/aws_sdk_s3.rb +20 -0
  56. data/lib/instana/activators/aws_sdk_sns.rb +20 -0
  57. data/lib/instana/activators/aws_sdk_sqs.rb +20 -0
  58. data/lib/instana/activators/cuba.rb +3 -0
  59. data/lib/instana/activators/dalli.rb +3 -0
  60. data/lib/instana/activators/excon.rb +4 -1
  61. data/lib/instana/activators/graphql.rb +3 -0
  62. data/lib/instana/activators/grpc_client.rb +3 -0
  63. data/lib/instana/activators/grpc_server.rb +3 -0
  64. data/lib/instana/activators/net_http.rb +3 -0
  65. data/lib/instana/activators/rack.rb +3 -0
  66. data/lib/instana/activators/rails.rb +3 -0
  67. data/lib/instana/activators/redis.rb +3 -0
  68. data/lib/instana/activators/resque_client.rb +3 -0
  69. data/lib/instana/activators/resque_worker.rb +3 -0
  70. data/lib/instana/activators/rest_client.rb +3 -0
  71. data/lib/instana/activators/roda.rb +3 -0
  72. data/lib/instana/activators/shoryuken.rb +24 -0
  73. data/lib/instana/activators/sidekiq_client.rb +3 -0
  74. data/lib/instana/activators/sidekiq_worker.rb +3 -0
  75. data/lib/instana/activators/sinatra.rb +3 -0
  76. data/lib/instana/agent.rb +3 -0
  77. data/lib/instana/agent/helpers.rb +3 -0
  78. data/lib/instana/agent/hooks.rb +3 -0
  79. data/lib/instana/agent/tasks.rb +3 -0
  80. data/lib/instana/base.rb +3 -0
  81. data/lib/instana/collector.rb +3 -0
  82. data/lib/instana/collectors/gc.rb +3 -0
  83. data/lib/instana/collectors/memory.rb +3 -0
  84. data/lib/instana/collectors/thread.rb +3 -0
  85. data/lib/instana/config.rb +6 -0
  86. data/lib/instana/frameworks/cuba.rb +3 -0
  87. data/lib/instana/frameworks/rails.rb +3 -0
  88. data/lib/instana/frameworks/roda.rb +3 -0
  89. data/lib/instana/frameworks/sinatra.rb +3 -0
  90. data/lib/instana/helpers.rb +3 -0
  91. data/lib/instana/instrumentation/action_cable.rb +53 -0
  92. data/lib/instana/instrumentation/action_controller.rb +3 -0
  93. data/lib/instana/instrumentation/action_view.rb +3 -0
  94. data/lib/instana/instrumentation/active_record.rb +3 -0
  95. data/lib/instana/instrumentation/aws_sdk_dynamodb.rb +48 -0
  96. data/lib/instana/instrumentation/aws_sdk_s3.rb +55 -0
  97. data/lib/instana/instrumentation/aws_sdk_sns.rb +29 -0
  98. data/lib/instana/instrumentation/aws_sdk_sqs.rb +98 -0
  99. data/lib/instana/instrumentation/dalli.rb +3 -0
  100. data/lib/instana/instrumentation/excon.rb +13 -4
  101. data/lib/instana/instrumentation/graphql.rb +3 -0
  102. data/lib/instana/instrumentation/grpc.rb +3 -0
  103. data/lib/instana/instrumentation/instrumented_request.rb +68 -7
  104. data/lib/instana/instrumentation/net-http.rb +13 -3
  105. data/lib/instana/instrumentation/rack.rb +38 -15
  106. data/lib/instana/instrumentation/redis.rb +3 -0
  107. data/lib/instana/instrumentation/resque.rb +3 -0
  108. data/lib/instana/instrumentation/rest-client.rb +3 -0
  109. data/lib/instana/instrumentation/shoryuken.rb +44 -0
  110. data/lib/instana/instrumentation/sidekiq-client.rb +4 -1
  111. data/lib/instana/instrumentation/sidekiq-worker.rb +4 -1
  112. data/lib/instana/opentracing/carrier.rb +3 -0
  113. data/lib/instana/opentracing/tracer.rb +3 -0
  114. data/lib/instana/rack.rb +4 -0
  115. data/lib/instana/secrets.rb +5 -2
  116. data/lib/instana/setup.rb +3 -0
  117. data/lib/instana/thread_local.rb +3 -0
  118. data/lib/instana/tracer.rb +17 -11
  119. data/lib/instana/tracing/processor.rb +3 -0
  120. data/lib/instana/tracing/span.rb +12 -3
  121. data/lib/instana/tracing/span_context.rb +28 -1
  122. data/lib/instana/util.rb +3 -0
  123. data/lib/instana/version.rb +4 -1
  124. data/lib/oj_check.rb +3 -0
  125. data/lib/opentracing.rb +3 -0
  126. data/test/activator_test.rb +3 -0
  127. data/test/agent/agent_test.rb +3 -0
  128. data/test/benchmarks/bench_id_generation.rb +3 -0
  129. data/test/benchmarks/bench_opentracing.rb +3 -0
  130. data/test/config_test.rb +3 -0
  131. data/test/frameworks/cuba_test.rb +3 -0
  132. data/test/frameworks/roda_test.rb +4 -0
  133. data/test/frameworks/sinatra_test.rb +3 -0
  134. data/test/instana_test.rb +3 -0
  135. data/test/instrumentation/aws_test.rb +161 -0
  136. data/test/instrumentation/dalli_test.rb +3 -0
  137. data/test/instrumentation/excon_test.rb +4 -0
  138. data/test/instrumentation/graphql_test.rb +3 -0
  139. data/test/instrumentation/grpc_test.rb +3 -0
  140. data/test/instrumentation/net_http_test.rb +21 -0
  141. data/test/instrumentation/rack_instrumented_request_test.rb +53 -3
  142. data/test/instrumentation/rack_test.rb +144 -0
  143. data/test/instrumentation/rails_action_cable_test.rb +131 -0
  144. data/test/instrumentation/rails_action_controller_test.rb +3 -0
  145. data/test/instrumentation/rails_action_view_test.rb +3 -0
  146. data/test/instrumentation/rails_active_record_test.rb +3 -2
  147. data/test/instrumentation/redis_test.rb +3 -0
  148. data/test/instrumentation/resque_test.rb +3 -0
  149. data/test/instrumentation/rest_client_test.rb +3 -0
  150. data/test/instrumentation/shoryuken_test.rb +47 -0
  151. data/test/instrumentation/sidekiq-client_test.rb +3 -0
  152. data/test/instrumentation/sidekiq-worker_test.rb +3 -0
  153. data/test/secrets_test.rb +3 -0
  154. data/test/support/apps/active_record/active_record.rb +3 -0
  155. data/test/support/apps/grpc/boot.rb +3 -0
  156. data/test/support/apps/grpc/grpc_server.rb +3 -0
  157. data/test/support/apps/http_endpoint/boot.rb +3 -0
  158. data/test/support/apps/rails/boot.rb +3 -0
  159. data/test/support/apps/rails/models/block.rb +3 -0
  160. data/test/support/apps/rails/models/block6.rb +3 -0
  161. data/test/support/apps/resque/boot.rb +3 -0
  162. data/test/support/apps/resque/jobs/resque_error_job.rb +3 -0
  163. data/test/support/apps/resque/jobs/resque_fast_job.rb +3 -0
  164. data/test/support/apps/sidekiq/boot.rb +4 -0
  165. data/test/support/apps/sidekiq/jobs/sidekiq_job_1.rb +3 -0
  166. data/test/support/apps/sidekiq/jobs/sidekiq_job_2.rb +3 -0
  167. data/test/support/apps/sidekiq/worker.rb +3 -0
  168. data/test/support/helpers.rb +3 -0
  169. data/test/test_helper.rb +3 -0
  170. data/test/tracing/custom_test.rb +3 -0
  171. data/test/tracing/id_management_test.rb +4 -0
  172. data/test/tracing/opentracing_test.rb +6 -3
  173. data/test/tracing/tracer_async_test.rb +3 -0
  174. data/test/tracing/tracer_test.rb +3 -0
  175. metadata +26 -3
  176. data/Dockerfile +0 -16
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class RailsActionControllerTest < Minitest::Test
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2021
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class RailsActionViewTest < Minitest::Test
@@ -1,8 +1,9 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2021
3
+
1
4
  require 'test_helper'
2
5
  require 'support/apps/active_record/active_record'
3
6
 
4
- require 'irb'
5
-
6
7
  class RailsActiveRecordTest < Minitest::Test
7
8
  def setup
8
9
  skip unless ENV['DATABASE_URL']
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class RedisTest < Minitest::Test
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2018
3
+
1
4
  require 'test_helper'
2
5
  require 'support/apps/resque/boot'
3
6
 
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2016
3
+
1
4
  require 'test_helper'
2
5
  require 'support/apps/http_endpoint/boot'
3
6
 
@@ -0,0 +1,47 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2021
3
+
4
+ require 'test_helper'
5
+ require 'ostruct'
6
+
7
+ class ShoryukenTest < Minitest::Test
8
+ def setup
9
+ clear_all!
10
+ @middleware = Instana::Instrumentation::Shoryuken.new
11
+ end
12
+
13
+ def test_start_trace_with_context
14
+ id = Instana::Util.generate_id
15
+ message = OpenStruct.new(
16
+ queue_url: 'http://example.com',
17
+ message_attributes: {
18
+ "X_INSTANA_T" => OpenStruct.new(string_value: id),
19
+ "X_INSTANA_S" => OpenStruct.new(string_value: id),
20
+ "X_INSTANA_L" => OpenStruct.new(string_value: '1')
21
+ }
22
+ )
23
+
24
+ @middleware.call(nil, nil, message, nil) {}
25
+
26
+ span = ::Instana.processor.queued_spans.first
27
+
28
+ assert_equal id, span[:t]
29
+ assert_equal id, span[:p]
30
+ assert_equal 'entry', span[:data][:sqs][:sort]
31
+ assert_equal 'http://example.com', span[:data][:sqs][:queue]
32
+ end
33
+
34
+ def test_start_trace
35
+ message = OpenStruct.new(
36
+ queue_url: 'http://example.com'
37
+ )
38
+
39
+ @middleware.call(nil, nil, message, nil) {}
40
+
41
+ span = ::Instana.processor.queued_spans.first
42
+
43
+ assert_nil span[:p]
44
+ assert_equal 'entry', span[:data][:sqs][:sort]
45
+ assert_equal 'http://example.com', span[:data][:sqs][:queue]
46
+ end
47
+ end
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'test_helper'
2
5
  require 'support/apps/sidekiq/boot'
3
6
 
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'test_helper'
2
5
  require 'support/apps/sidekiq/boot'
3
6
 
data/test/secrets_test.rb CHANGED
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2021
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class SecretsTest < Minitest::Test
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2021
3
+
1
4
  require 'rails'
2
5
  require 'active_record/railtie'
3
6
 
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require_relative 'grpc_server'
2
5
 
3
6
  ::Instana.logger.info "Booting instrumented gRPC server on port 50051 for tests."
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'google/protobuf'
2
5
 
3
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2016
3
+
1
4
  require 'rack/handler/puma'
2
5
  require 'rack/builder'
3
6
  require 'instana/rack'
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  ::Instana.logger.warn "Starting background Ruby on Rails #{Rails::VERSION::STRING} application on port 3205"
2
5
 
3
6
  require "rails"
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  class Block < ActiveRecord::Base
2
5
  def do_work(*args)
3
6
  block = Block.first
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  class Block < ActiveRecord::Base
2
5
  def do_work(*args)
3
6
  block = Block.first
@@ -1,2 +1,5 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2021
3
+
1
4
  require_relative 'jobs/resque_error_job'
2
5
  require_relative 'jobs/resque_fast_job'
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2018
3
+
1
4
  require "redis"
2
5
  require "net/http"
3
6
 
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2018
3
+
1
4
  require "redis"
2
5
  require "net/http"
3
6
 
@@ -1,4 +1,8 @@
1
1
  # Hook into sidekiq to control the current mode
2
+
3
+ # (c) Copyright IBM Corp. 2021
4
+ # (c) Copyright Instana Inc. 2021
5
+
2
6
  $sidekiq_mode = :client
3
7
  class << Sidekiq
4
8
  def server?
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  class SidekiqJobOne
2
5
  include Sidekiq::Worker
3
6
 
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  class SidekiqJobTwo
2
5
  include Sidekiq::Worker
3
6
 
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'sidekiq/launcher'
2
5
  require 'sidekiq/cli'
3
6
  require 'sidekiq/api'
@@ -1,5 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # (c) Copyright IBM Corp. 2021
4
+ # (c) Copyright Instana Inc. 2021
5
+
3
6
  module Instana
4
7
  module TestHelpers
5
8
  # Used to reset the gem to boot state. It clears out any queued and/or staged
data/test/test_helper.rb CHANGED
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2016
3
+
1
4
  ENV['INSTANA_TEST'] = 'true'
2
5
 
3
6
  begin
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2016
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class CustomTracingTest < Minitest::Test
@@ -1,4 +1,8 @@
1
1
 
2
+
3
+ # (c) Copyright IBM Corp. 2021
4
+ # (c) Copyright Instana Inc. 2016
5
+
2
6
  require 'test_helper'
3
7
 
4
8
  class TracerIDMgmtTest < Minitest::Test
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2017
3
+
1
4
  require 'test_helper'
2
5
  require 'rack/test'
3
6
  require 'rack/lobster'
@@ -301,7 +304,7 @@ class OpenTracerTest < Minitest::Test
301
304
  assert_equal second_span[:s], third_span[:p]
302
305
 
303
306
  # Every span should have baggage
304
- assert_equal(nil, entry_span.context.baggage)
307
+ assert_equal({}, entry_span.context.baggage)
305
308
  assert_equal({:my_bag=>1}, ac_span.context.baggage)
306
309
  assert_equal({:my_bag=>1}, av_span.context.baggage)
307
310
  end
@@ -328,9 +331,9 @@ class OpenTracerTest < Minitest::Test
328
331
  spans = ::Instana.processor.queued_spans
329
332
  assert_equal 3, spans.length
330
333
 
331
- assert_equal(nil, entry_span.context.baggage)
334
+ assert_equal({}, entry_span.context.baggage)
332
335
  assert_equal({:my_bag=>1}, ac_span.context.baggage)
333
- assert_equal(nil, av_span.context.baggage)
336
+ assert_equal({}, av_span.context.baggage)
334
337
  end
335
338
 
336
339
  def test_start_active_span
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2016
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class TracerAsyncTest < Minitest::Test
@@ -1,3 +1,6 @@
1
+ # (c) Copyright IBM Corp. 2021
2
+ # (c) Copyright Instana Inc. 2016
3
+
1
4
  require 'test_helper'
2
5
 
3
6
  class TracerTest < Minitest::Test
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instana
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.193.4
4
+ version: 1.195.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Giacomo Lombardo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-08 00:00:00.000000000 Z
11
+ date: 2021-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -153,7 +153,6 @@ files:
153
153
  - ".rubocop.yml"
154
154
  - ".rubocop_todo.yml"
155
155
  - Appraisals
156
- - Dockerfile
157
156
  - Gemfile
158
157
  - LICENSE
159
158
  - README.md
@@ -168,12 +167,17 @@ files:
168
167
  - benchmarks/time_processing.rb
169
168
  - bin/console
170
169
  - bin/setup
170
+ - docker-compose.yml
171
171
  - examples/opentracing.rb
172
172
  - examples/tracing.rb
173
+ - extras/license_header.rb
173
174
  - gemfiles/.bundle/config
175
+ - gemfiles/aws_30.gemfile
174
176
  - gemfiles/cuba_30.gemfile
175
177
  - gemfiles/dalli_20.gemfile
176
178
  - gemfiles/excon_02.gemfile
179
+ - gemfiles/excon_021.gemfile
180
+ - gemfiles/excon_079.gemfile
177
181
  - gemfiles/graphql_10.gemfile
178
182
  - gemfiles/grpc_10.gemfile
179
183
  - gemfiles/net_http_01.gemfile
@@ -190,16 +194,22 @@ files:
190
194
  - gemfiles/rest_client_20.gemfile
191
195
  - gemfiles/roda_20.gemfile
192
196
  - gemfiles/roda_30.gemfile
197
+ - gemfiles/shoryuken_50.gemfile
193
198
  - gemfiles/sidekiq_42.gemfile
194
199
  - gemfiles/sidekiq_50.gemfile
195
200
  - gemfiles/sinatra_14.gemfile
196
201
  - instana.gemspec
197
202
  - lib/instana.rb
198
203
  - lib/instana/activator.rb
204
+ - lib/instana/activators/action_cable.rb
199
205
  - lib/instana/activators/action_controller_api.rb
200
206
  - lib/instana/activators/action_controller_base.rb
201
207
  - lib/instana/activators/action_view.rb
202
208
  - lib/instana/activators/active_record.rb
209
+ - lib/instana/activators/aws_sdk_dynamodb.rb
210
+ - lib/instana/activators/aws_sdk_s3.rb
211
+ - lib/instana/activators/aws_sdk_sns.rb
212
+ - lib/instana/activators/aws_sdk_sqs.rb
203
213
  - lib/instana/activators/cuba.rb
204
214
  - lib/instana/activators/dalli.rb
205
215
  - lib/instana/activators/excon.rb
@@ -214,6 +224,7 @@ files:
214
224
  - lib/instana/activators/resque_worker.rb
215
225
  - lib/instana/activators/rest_client.rb
216
226
  - lib/instana/activators/roda.rb
227
+ - lib/instana/activators/shoryuken.rb
217
228
  - lib/instana/activators/sidekiq_client.rb
218
229
  - lib/instana/activators/sidekiq_worker.rb
219
230
  - lib/instana/activators/sinatra.rb
@@ -234,9 +245,14 @@ files:
234
245
  - lib/instana/frameworks/roda.rb
235
246
  - lib/instana/frameworks/sinatra.rb
236
247
  - lib/instana/helpers.rb
248
+ - lib/instana/instrumentation/action_cable.rb
237
249
  - lib/instana/instrumentation/action_controller.rb
238
250
  - lib/instana/instrumentation/action_view.rb
239
251
  - lib/instana/instrumentation/active_record.rb
252
+ - lib/instana/instrumentation/aws_sdk_dynamodb.rb
253
+ - lib/instana/instrumentation/aws_sdk_s3.rb
254
+ - lib/instana/instrumentation/aws_sdk_sns.rb
255
+ - lib/instana/instrumentation/aws_sdk_sqs.rb
240
256
  - lib/instana/instrumentation/dalli.rb
241
257
  - lib/instana/instrumentation/excon.rb
242
258
  - lib/instana/instrumentation/graphql.rb
@@ -247,6 +263,7 @@ files:
247
263
  - lib/instana/instrumentation/redis.rb
248
264
  - lib/instana/instrumentation/resque.rb
249
265
  - lib/instana/instrumentation/rest-client.rb
266
+ - lib/instana/instrumentation/shoryuken.rb
250
267
  - lib/instana/instrumentation/sidekiq-client.rb
251
268
  - lib/instana/instrumentation/sidekiq-worker.rb
252
269
  - lib/instana/opentracing/carrier.rb
@@ -273,6 +290,7 @@ files:
273
290
  - test/frameworks/roda_test.rb
274
291
  - test/frameworks/sinatra_test.rb
275
292
  - test/instana_test.rb
293
+ - test/instrumentation/aws_test.rb
276
294
  - test/instrumentation/dalli_test.rb
277
295
  - test/instrumentation/excon_test.rb
278
296
  - test/instrumentation/graphql_test.rb
@@ -280,12 +298,14 @@ files:
280
298
  - test/instrumentation/net_http_test.rb
281
299
  - test/instrumentation/rack_instrumented_request_test.rb
282
300
  - test/instrumentation/rack_test.rb
301
+ - test/instrumentation/rails_action_cable_test.rb
283
302
  - test/instrumentation/rails_action_controller_test.rb
284
303
  - test/instrumentation/rails_action_view_test.rb
285
304
  - test/instrumentation/rails_active_record_test.rb
286
305
  - test/instrumentation/redis_test.rb
287
306
  - test/instrumentation/resque_test.rb
288
307
  - test/instrumentation/rest_client_test.rb
308
+ - test/instrumentation/shoryuken_test.rb
289
309
  - test/instrumentation/sidekiq-client_test.rb
290
310
  - test/instrumentation/sidekiq-worker_test.rb
291
311
  - test/secrets_test.rb
@@ -357,11 +377,14 @@ test_files:
357
377
  - test/instrumentation/rails_action_view_test.rb
358
378
  - test/instrumentation/rack_test.rb
359
379
  - test/instrumentation/rack_instrumented_request_test.rb
380
+ - test/instrumentation/shoryuken_test.rb
360
381
  - test/instrumentation/rails_active_record_test.rb
361
382
  - test/instrumentation/redis_test.rb
362
383
  - test/instrumentation/dalli_test.rb
384
+ - test/instrumentation/rails_action_cable_test.rb
363
385
  - test/instrumentation/excon_test.rb
364
386
  - test/instrumentation/grpc_test.rb
387
+ - test/instrumentation/aws_test.rb
365
388
  - test/support/helpers.rb
366
389
  - test/support/apps/sidekiq/boot.rb
367
390
  - test/support/apps/sidekiq/jobs/sidekiq_job_2.rb