instana 1.192.1 → 1.193.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +200 -133
- data/.gitignore +3 -0
- data/.rubocop.yml +10 -1145
- data/.rubocop_todo.yml +1140 -0
- data/Appraisals +103 -0
- data/Gemfile +14 -32
- data/LICENSE +2 -1
- data/Rakefile +19 -39
- data/benchmarks/10k-rack-traces.rb +3 -0
- data/benchmarks/Gemfile +4 -0
- data/benchmarks/id_generation.rb +4 -0
- data/benchmarks/opentracing.rb +4 -0
- data/benchmarks/rack_vanilla_vs_traced.rb +3 -0
- data/benchmarks/stackprof_rack_tracing.rb +3 -0
- data/benchmarks/time_processing.rb +4 -0
- data/bin/console +8 -4
- data/examples/opentracing.rb +4 -0
- data/examples/tracing.rb +4 -0
- data/extras/license_header.rb +44 -0
- data/gemfiles/.bundle/config +1 -2
- data/gemfiles/cuba_30.gemfile +18 -0
- data/gemfiles/dalli_20.gemfile +18 -0
- data/gemfiles/excon_02.gemfile +18 -0
- data/gemfiles/graphql_10.gemfile +18 -0
- data/gemfiles/grpc_10.gemfile +18 -0
- data/gemfiles/net_http_01.gemfile +17 -0
- data/gemfiles/rack_16.gemfile +18 -0
- data/gemfiles/rack_20.gemfile +18 -0
- data/gemfiles/rails_42.gemfile +21 -0
- data/gemfiles/rails_50.gemfile +21 -0
- data/gemfiles/rails_52.gemfile +21 -0
- data/gemfiles/rails_60.gemfile +21 -0
- data/gemfiles/redis_40.gemfile +18 -0
- data/gemfiles/resque_122.gemfile +19 -0
- data/gemfiles/resque_20.gemfile +18 -0
- data/gemfiles/rest_client_16.gemfile +18 -0
- data/gemfiles/rest_client_20.gemfile +18 -0
- data/gemfiles/roda_20.gemfile +18 -0
- data/gemfiles/roda_30.gemfile +18 -0
- data/gemfiles/sidekiq_42.gemfile +18 -0
- data/gemfiles/sidekiq_50.gemfile +18 -0
- data/gemfiles/sinatra_14.gemfile +18 -0
- data/instana.gemspec +5 -7
- data/lib/instana.rb +3 -0
- data/lib/instana/activator.rb +44 -0
- data/lib/instana/activators/action_cable.rb +24 -0
- data/lib/instana/activators/action_controller_api.rb +21 -0
- data/lib/instana/activators/action_controller_base.rb +21 -0
- data/lib/instana/activators/action_view.rb +21 -0
- data/lib/instana/activators/active_record.rb +21 -0
- data/lib/instana/activators/cuba.rb +21 -0
- data/lib/instana/activators/dalli.rb +23 -0
- data/lib/instana/activators/excon.rb +20 -0
- data/lib/instana/activators/graphql.rb +22 -0
- data/lib/instana/activators/grpc_client.rb +20 -0
- data/lib/instana/activators/grpc_server.rb +20 -0
- data/lib/instana/activators/net_http.rb +20 -0
- data/lib/instana/activators/rack.rb +16 -0
- data/lib/instana/activators/rails.rb +18 -0
- data/lib/instana/activators/redis.rb +20 -0
- data/lib/instana/activators/resque_client.rb +21 -0
- data/lib/instana/activators/resque_worker.rb +33 -0
- data/lib/instana/activators/rest_client.rb +20 -0
- data/lib/instana/activators/roda.rb +21 -0
- data/lib/instana/activators/sidekiq_client.rb +24 -0
- data/lib/instana/activators/sidekiq_worker.rb +24 -0
- data/lib/instana/activators/sinatra.rb +21 -0
- data/lib/instana/agent.rb +3 -0
- data/lib/instana/agent/helpers.rb +3 -0
- data/lib/instana/agent/hooks.rb +3 -0
- data/lib/instana/agent/tasks.rb +3 -0
- data/lib/instana/base.rb +3 -0
- data/lib/instana/collector.rb +3 -0
- data/lib/instana/collectors/gc.rb +3 -0
- data/lib/instana/collectors/memory.rb +3 -0
- data/lib/instana/collectors/thread.rb +3 -0
- data/lib/instana/config.rb +3 -0
- data/lib/instana/frameworks/cuba.rb +9 -13
- data/lib/instana/frameworks/rails.rb +22 -32
- data/lib/instana/frameworks/roda.rb +10 -13
- data/lib/instana/frameworks/sinatra.rb +4 -8
- data/lib/instana/helpers.rb +3 -0
- data/lib/instana/instrumentation/action_cable.rb +53 -0
- data/lib/instana/instrumentation/action_controller.rb +84 -0
- data/lib/instana/instrumentation/action_view.rb +30 -0
- data/lib/instana/instrumentation/active_record.rb +50 -0
- data/lib/instana/instrumentation/dalli.rb +10 -18
- data/lib/instana/instrumentation/excon.rb +54 -57
- data/lib/instana/instrumentation/graphql.rb +19 -18
- data/lib/instana/instrumentation/grpc.rb +73 -66
- data/lib/instana/instrumentation/instrumented_request.rb +6 -1
- data/lib/instana/instrumentation/net-http.rb +46 -47
- data/lib/instana/instrumentation/rack.rb +4 -0
- data/lib/instana/instrumentation/redis.rb +13 -18
- data/lib/instana/instrumentation/resque.rb +17 -50
- data/lib/instana/instrumentation/rest-client.rb +5 -17
- data/lib/instana/instrumentation/sidekiq-client.rb +3 -9
- data/lib/instana/instrumentation/sidekiq-worker.rb +3 -9
- data/lib/instana/opentracing/carrier.rb +3 -0
- data/lib/instana/opentracing/tracer.rb +3 -0
- data/lib/instana/rack.rb +4 -0
- data/lib/instana/secrets.rb +10 -7
- data/lib/instana/setup.rb +6 -1
- data/lib/instana/thread_local.rb +3 -0
- data/lib/instana/tracer.rb +3 -0
- data/lib/instana/tracing/processor.rb +3 -0
- data/lib/instana/tracing/span.rb +3 -0
- data/lib/instana/tracing/span_context.rb +3 -0
- data/lib/instana/util.rb +4 -41
- data/lib/instana/version.rb +4 -1
- data/lib/oj_check.rb +3 -0
- data/lib/opentracing.rb +3 -0
- data/test/activator_test.rb +30 -0
- data/test/agent/agent_test.rb +3 -0
- data/test/benchmarks/bench_id_generation.rb +3 -0
- data/test/benchmarks/bench_opentracing.rb +3 -0
- data/test/config_test.rb +3 -0
- data/test/frameworks/cuba_test.rb +41 -40
- data/test/frameworks/roda_test.rb +43 -41
- data/test/frameworks/sinatra_test.rb +64 -64
- data/test/instana_test.rb +3 -0
- data/test/instrumentation/dalli_test.rb +3 -0
- data/test/instrumentation/excon_test.rb +4 -0
- data/test/instrumentation/graphql_test.rb +3 -0
- data/test/instrumentation/grpc_test.rb +5 -1
- data/test/instrumentation/{net-http_test.rb → net_http_test.rb} +4 -0
- data/test/instrumentation/{instrumented_request_test.rb → rack_instrumented_request_test.rb} +4 -1
- data/test/{frameworks → instrumentation}/rack_test.rb +3 -1
- data/test/instrumentation/rails_action_cable_test.rb +131 -0
- data/test/{frameworks/rails/actioncontroller_test.rb → instrumentation/rails_action_controller_test.rb} +40 -21
- data/test/instrumentation/rails_action_view_test.rb +151 -0
- data/test/instrumentation/rails_active_record_test.rb +122 -0
- data/test/instrumentation/redis_test.rb +3 -0
- data/test/instrumentation/resque_test.rb +6 -11
- data/test/instrumentation/{rest-client_test.rb → rest_client_test.rb} +9 -0
- data/test/instrumentation/sidekiq-client_test.rb +4 -0
- data/test/instrumentation/sidekiq-worker_test.rb +4 -0
- data/test/secrets_test.rb +3 -0
- data/test/support/apps/active_record/active_record.rb +24 -0
- data/test/{servers/grpc_50051.rb → support/apps/grpc/boot.rb} +4 -1
- data/test/{apps → support/apps/grpc}/grpc_server.rb +3 -0
- data/test/{servers/rackapp_6511.rb → support/apps/http_endpoint/boot.rb} +3 -0
- data/test/{servers/rails_3205.rb → support/apps/rails/boot.rb} +10 -13
- data/test/{models → support/apps/rails/models}/block.rb +4 -1
- data/test/{models → support/apps/rails/models}/block6.rb +3 -0
- data/test/support/apps/resque/boot.rb +5 -0
- data/test/{jobs → support/apps/resque/jobs}/resque_error_job.rb +3 -0
- data/test/{jobs → support/apps/resque/jobs}/resque_fast_job.rb +3 -0
- data/test/support/apps/sidekiq/boot.rb +25 -0
- data/test/{jobs → support/apps/sidekiq/jobs}/sidekiq_job_1.rb +3 -0
- data/test/{jobs → support/apps/sidekiq/jobs}/sidekiq_job_2.rb +3 -0
- data/test/{servers → support/apps}/sidekiq/worker.rb +5 -2
- data/test/support/helpers.rb +97 -0
- data/test/test_helper.rb +27 -144
- data/test/tracing/custom_test.rb +3 -0
- data/test/tracing/id_management_test.rb +4 -0
- data/test/tracing/opentracing_test.rb +3 -0
- data/test/tracing/tracer_async_test.rb +3 -0
- data/test/tracing/tracer_test.rb +3 -0
- metadata +105 -96
- data/gemfiles/libraries.gemfile +0 -73
- data/gemfiles/rails32.gemfile +0 -51
- data/gemfiles/rails42.gemfile +0 -50
- data/gemfiles/rails50.gemfile +0 -52
- data/gemfiles/rails52.gemfile +0 -52
- data/gemfiles/rails60.gemfile +0 -72
- data/lib/instana/frameworks/instrumentation/abstract_mysql_adapter.rb +0 -58
- data/lib/instana/frameworks/instrumentation/action_controller.rb +0 -194
- data/lib/instana/frameworks/instrumentation/action_view.rb +0 -43
- data/lib/instana/frameworks/instrumentation/active_record.rb +0 -27
- data/lib/instana/frameworks/instrumentation/mysql2_adapter.rb +0 -87
- data/lib/instana/frameworks/instrumentation/mysql_adapter.rb +0 -62
- data/lib/instana/frameworks/instrumentation/postgresql_adapter.rb +0 -103
- data/lib/instana/instrumentation.rb +0 -25
- data/lib/instana/test.rb +0 -43
- data/test/apps/cuba.rb +0 -19
- data/test/apps/roda.rb +0 -13
- data/test/apps/sinatra.rb +0 -9
- data/test/frameworks/rails/actionview3_test.rb +0 -210
- data/test/frameworks/rails/actionview4_test.rb +0 -208
- data/test/frameworks/rails/actionview5_test.rb +0 -221
- data/test/frameworks/rails/activerecord_test.rb +0 -279
- data/test/servers/helpers/sidekiq_worker_initializer.rb +0 -27
@@ -1,43 +0,0 @@
|
|
1
|
-
module Instana
|
2
|
-
module Instrumentation
|
3
|
-
module ActionViewRenderer
|
4
|
-
def self.included(klass)
|
5
|
-
::Instana::Util.method_alias(klass, :render_partial)
|
6
|
-
::Instana::Util.method_alias(klass, :render_collection)
|
7
|
-
end
|
8
|
-
|
9
|
-
def render_partial_with_instana(*args)
|
10
|
-
kv_payload = { :render => {} }
|
11
|
-
kv_payload[:render][:type] = :partial
|
12
|
-
kv_payload[:render][:name] = @options[:partial].to_s if @options.is_a?(Hash)
|
13
|
-
|
14
|
-
::Instana.tracer.log_entry(:render, kv_payload)
|
15
|
-
render_partial_without_instana(*args)
|
16
|
-
rescue Exception => e
|
17
|
-
::Instana.tracer.log_error(e)
|
18
|
-
raise
|
19
|
-
ensure
|
20
|
-
::Instana.tracer.log_exit(:render)
|
21
|
-
end
|
22
|
-
|
23
|
-
def render_collection_with_instana(*args)
|
24
|
-
kv_payload = { :render => {} }
|
25
|
-
kv_payload[:render][:type] = :collection
|
26
|
-
kv_payload[:render][:name] = @path.to_s
|
27
|
-
|
28
|
-
::Instana.tracer.log_entry(:render, kv_payload)
|
29
|
-
render_collection_without_instana(*args)
|
30
|
-
rescue Exception => e
|
31
|
-
::Instana.tracer.log_error(e)
|
32
|
-
raise
|
33
|
-
ensure
|
34
|
-
::Instana.tracer.log_exit(:render)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
if defined?(::ActionView) && ::Instana.config[:action_view][:enabled] && ::ActionPack::VERSION::STRING >= '3.1'
|
41
|
-
::Instana.logger.debug "Instrumenting ActionView"
|
42
|
-
::ActionView::PartialRenderer.send(:include, ::Instana::Instrumentation::ActionViewRenderer)
|
43
|
-
end
|
@@ -1,27 +0,0 @@
|
|
1
|
-
|
2
|
-
require "instana/frameworks/instrumentation/mysql_adapter"
|
3
|
-
require "instana/frameworks/instrumentation/abstract_mysql_adapter"
|
4
|
-
require "instana/frameworks/instrumentation/mysql2_adapter"
|
5
|
-
require "instana/frameworks/instrumentation/postgresql_adapter"
|
6
|
-
|
7
|
-
if defined?(::ActiveRecord) && ::Instana.config[:active_record][:enabled]
|
8
|
-
|
9
|
-
# Mysql
|
10
|
-
if defined?(ActiveRecord::ConnectionAdapters::MysqlAdapter)
|
11
|
-
::Instana.logger.debug "Instrumenting ActiveRecord (mysql)"
|
12
|
-
ActiveRecord::ConnectionAdapters::MysqlAdapter.send(:include, ::Instana::Instrumentation::MysqlAdapter)
|
13
|
-
ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter.send(:include, ::Instana::Instrumentation::AbstractMysqlAdapter)
|
14
|
-
end
|
15
|
-
|
16
|
-
# Mysql2
|
17
|
-
if defined?(ActiveRecord::ConnectionAdapters::Mysql2Adapter)
|
18
|
-
::Instana.logger.debug "Instrumenting ActiveRecord (mysql2)"
|
19
|
-
ActiveRecord::ConnectionAdapters::Mysql2Adapter.send(:include, ::Instana::Instrumentation::Mysql2Adapter)
|
20
|
-
end
|
21
|
-
|
22
|
-
# Postgres
|
23
|
-
if defined?(ActiveRecord::ConnectionAdapters::PostgreSQLAdapter)
|
24
|
-
::Instana.logger.debug "Instrumenting ActiveRecord (postgresql)"
|
25
|
-
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.send(:include, ::Instana::Instrumentation::PostgreSQLAdapter)
|
26
|
-
end
|
27
|
-
end
|
@@ -1,87 +0,0 @@
|
|
1
|
-
module Instana
|
2
|
-
module Instrumentation
|
3
|
-
module Mysql2Adapter
|
4
|
-
IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN CACHE).freeze
|
5
|
-
EXPLAINED_SQLS = /\A\s*(with|select|update|delete|insert)\b/i
|
6
|
-
|
7
|
-
# This module supports instrumenting ActiveRecord with the mysql2 adapter.
|
8
|
-
#
|
9
|
-
def self.included(klass)
|
10
|
-
# ActiveRecord 3.1 and up only (for now possibly)
|
11
|
-
if ActiveRecord::VERSION::STRING > '3.0'
|
12
|
-
Instana::Util.method_alias(klass, :exec_delete)
|
13
|
-
Instana::Util.method_alias(klass, :exec_insert)
|
14
|
-
Instana::Util.method_alias(klass, :exec_query)
|
15
|
-
|
16
|
-
@@sanitize_regexp = Regexp.new('(\'[\s\S][^\']*\'|\d*\.\d+|\d+|NULL)', Regexp::IGNORECASE)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
# Collect up this DB connection info for reporting.
|
21
|
-
#
|
22
|
-
# @param sql [String]
|
23
|
-
# @return [Hash] Hash of collected KVs
|
24
|
-
#
|
25
|
-
def collect(sql)
|
26
|
-
payload = { :activerecord => {} }
|
27
|
-
|
28
|
-
if ::Instana.config[:sanitize_sql]
|
29
|
-
payload[:activerecord][:sql] = sql.gsub(@@sanitize_regexp, '?')
|
30
|
-
else
|
31
|
-
payload[:activerecord][:sql] = sql
|
32
|
-
end
|
33
|
-
|
34
|
-
payload[:activerecord][:adapter] = @config[:adapter]
|
35
|
-
payload[:activerecord][:host] = @config[:host]
|
36
|
-
payload[:activerecord][:db] = @config[:database]
|
37
|
-
payload[:activerecord][:username] = @config[:username]
|
38
|
-
payload
|
39
|
-
end
|
40
|
-
|
41
|
-
# In the spirit of ::ActiveRecord::ExplainSubscriber.ignore_payload? There are
|
42
|
-
# only certain calls that we're interested in tracing. e.g. No use to instrument
|
43
|
-
# framework caches.
|
44
|
-
#
|
45
|
-
# @param payload [String]
|
46
|
-
# @return [Boolean]
|
47
|
-
#
|
48
|
-
def ignore_payload?(name, sql)
|
49
|
-
IGNORED_PAYLOADS.include?(name) || sql !~ EXPLAINED_SQLS
|
50
|
-
end
|
51
|
-
|
52
|
-
def exec_delete_with_instana(sql, name = nil, binds = [])
|
53
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql)
|
54
|
-
return exec_delete_without_instana(sql, name, binds)
|
55
|
-
end
|
56
|
-
|
57
|
-
kv_payload = collect(sql)
|
58
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
59
|
-
exec_delete_without_instana(sql, name, binds)
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
def exec_insert_with_instana(sql, name = 'SQL', binds = [], *args)
|
64
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql)
|
65
|
-
return exec_insert_without_instana(sql, name, binds, *args)
|
66
|
-
end
|
67
|
-
|
68
|
-
kv_payload = collect(sql)
|
69
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
70
|
-
exec_insert_without_instana(sql, name, binds, *args)
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
def exec_query_with_instana(sql, name = 'SQL', binds = [], *args)
|
75
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql) ||
|
76
|
-
::Instana.tracer.current_span[:n] == :activerecord
|
77
|
-
return exec_query_without_instana(sql, name, binds, *args)
|
78
|
-
end
|
79
|
-
|
80
|
-
kv_payload = collect(sql)
|
81
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
82
|
-
exec_query_without_instana(sql, name, binds, *args)
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
87
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
module Instana
|
2
|
-
module Instrumentation
|
3
|
-
module MysqlAdapter
|
4
|
-
IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN CACHE).freeze
|
5
|
-
EXPLAINED_SQLS = /\A\s*(with|select|update|delete|insert)\b/i
|
6
|
-
|
7
|
-
# This module supports instrumenting ActiveRecord with the mysql2 adapter.
|
8
|
-
#
|
9
|
-
def self.included(klass)
|
10
|
-
if ActiveRecord::VERSION::STRING >= '3.2'
|
11
|
-
Instana::Util.method_alias(klass, :exec_query)
|
12
|
-
|
13
|
-
@@sanitize_regexp = Regexp.new('(\'[\s\S][^\']*\'|\d*\.\d+|\d+|NULL)', Regexp::IGNORECASE)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
# Collect up this DB connection info for reporting.
|
18
|
-
#
|
19
|
-
# @param sql [String]
|
20
|
-
# @return [Hash] Hash of collected KVs
|
21
|
-
#
|
22
|
-
def collect(sql)
|
23
|
-
payload = { :activerecord => {} }
|
24
|
-
|
25
|
-
if ::Instana.config[:sanitize_sql]
|
26
|
-
payload[:activerecord][:sql] = sql.gsub(@@sanitize_regexp, '?')
|
27
|
-
else
|
28
|
-
payload[:activerecord][:sql] = sql
|
29
|
-
end
|
30
|
-
|
31
|
-
payload[:activerecord][:adapter] = @config[:adapter]
|
32
|
-
payload[:activerecord][:host] = @config[:host]
|
33
|
-
payload[:activerecord][:db] = @config[:database]
|
34
|
-
payload[:activerecord][:username] = @config[:username]
|
35
|
-
payload
|
36
|
-
end
|
37
|
-
|
38
|
-
# In the spirit of ::ActiveRecord::ExplainSubscriber.ignore_payload? There are
|
39
|
-
# only certain calls that we're interested in tracing. e.g. No use to instrument
|
40
|
-
# framework caches.
|
41
|
-
#
|
42
|
-
# @param payload [String]
|
43
|
-
# @return [Boolean]
|
44
|
-
#
|
45
|
-
def ignore_payload?(name, sql)
|
46
|
-
IGNORED_PAYLOADS.include?(name) || sql !~ EXPLAINED_SQLS
|
47
|
-
end
|
48
|
-
|
49
|
-
def exec_query_with_instana(sql, name = 'SQL', binds = [], *args)
|
50
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql) ||
|
51
|
-
::Instana.tracer.current_span[:n] == :activerecord
|
52
|
-
return exec_query_without_instana(sql, name, binds, *args)
|
53
|
-
end
|
54
|
-
|
55
|
-
kv_payload = collect(sql)
|
56
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
57
|
-
exec_query_without_instana(sql, name, binds, *args)
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
@@ -1,103 +0,0 @@
|
|
1
|
-
module Instana
|
2
|
-
module Instrumentation
|
3
|
-
module PostgreSQLAdapter
|
4
|
-
IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN CACHE).freeze
|
5
|
-
IGNORED_SQL = %w(BEGIN COMMIT)
|
6
|
-
EXPLAINED_SQLS = /\A\s*(with|select|update|delete|insert)\b/i
|
7
|
-
|
8
|
-
# This module supports instrumenting ActiveRecord with the postgresql adapter. Only
|
9
|
-
# versions >= 3.1 are supported.
|
10
|
-
#
|
11
|
-
def self.included(klass)
|
12
|
-
if (::ActiveRecord::VERSION::MAJOR == 3 && ::ActiveRecord::VERSION::MINOR > 0) ||
|
13
|
-
::ActiveRecord::VERSION::MAJOR >= 4
|
14
|
-
|
15
|
-
# ActiveRecord 3.1 and up
|
16
|
-
Instana::Util.method_alias(klass, :exec_query)
|
17
|
-
Instana::Util.method_alias(klass, :exec_delete)
|
18
|
-
Instana::Util.method_alias(klass, :execute)
|
19
|
-
|
20
|
-
@@sanitize_regexp = Regexp.new('(\'[\s\S][^\']*\'|\d*\.\d+|\d+|NULL)', Regexp::IGNORECASE)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
# Collect up this DB connection info for reporting.
|
25
|
-
#
|
26
|
-
# @param sql [String]
|
27
|
-
# @return [Hash] Hash of collected KVs
|
28
|
-
#
|
29
|
-
def collect(sql, binds = nil)
|
30
|
-
payload = { :activerecord => {} }
|
31
|
-
|
32
|
-
payload[:activerecord][:adapter] = @config[:adapter]
|
33
|
-
payload[:activerecord][:host] = @config[:host]
|
34
|
-
payload[:activerecord][:db] = @config[:database]
|
35
|
-
payload[:activerecord][:username] = @config[:username]
|
36
|
-
|
37
|
-
if ::Instana.config[:sanitize_sql]
|
38
|
-
payload[:activerecord][:sql] = sql.gsub(@@sanitize_regexp, '?')
|
39
|
-
else
|
40
|
-
# No sanitization so raw SQL and collect up binds
|
41
|
-
payload[:activerecord][:sql] = sql
|
42
|
-
|
43
|
-
# FIXME: Only works on Rails 5 as the bind format varied in previous versions of Rails
|
44
|
-
if binds.is_a?(Array)
|
45
|
-
raw_binds = []
|
46
|
-
binds.each { |x| raw_binds << x.value_before_type_cast }
|
47
|
-
payload[:activerecord][:binds] = raw_binds
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
payload
|
52
|
-
rescue Exception => e
|
53
|
-
::Instana.logger.debug { "#{__method__}:#{File.basename(__FILE__)}:#{__LINE__}: #{e.message}" }
|
54
|
-
ensure
|
55
|
-
return payload
|
56
|
-
end
|
57
|
-
|
58
|
-
# In the spirit of ::ActiveRecord::ExplainSubscriber.ignore_payload? There are
|
59
|
-
# only certain calls that we're interested in tracing. e.g. No use to instrument
|
60
|
-
# framework caches.
|
61
|
-
#
|
62
|
-
# @param payload [String]
|
63
|
-
# @return [Boolean]
|
64
|
-
#
|
65
|
-
def ignore_payload?(name, sql)
|
66
|
-
IGNORED_PAYLOADS.include?(name) || IGNORED_SQL.include?(sql)
|
67
|
-
end
|
68
|
-
|
69
|
-
def exec_query_with_instana(sql, name = 'SQL', binds = [], *args)
|
70
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql)
|
71
|
-
return exec_query_without_instana(sql, name, binds, *args)
|
72
|
-
end
|
73
|
-
|
74
|
-
kv_payload = collect(sql, binds)
|
75
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
76
|
-
exec_query_without_instana(sql, name, binds, *args)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
def exec_delete_with_instana(sql, name = nil, binds = [])
|
81
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql)
|
82
|
-
return exec_delete_without_instana(sql, name, binds)
|
83
|
-
end
|
84
|
-
|
85
|
-
kv_payload = collect(sql, binds)
|
86
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
87
|
-
exec_delete_without_instana(sql, name, binds)
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
def execute_with_instana(sql, name = nil)
|
92
|
-
if !::Instana.tracer.tracing? || ignore_payload?(name, sql)
|
93
|
-
return execute_without_instana(sql, name)
|
94
|
-
end
|
95
|
-
|
96
|
-
kv_payload = collect(sql)
|
97
|
-
::Instana.tracer.trace(:activerecord, kv_payload) do
|
98
|
-
execute_without_instana(sql, name)
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
102
|
-
end
|
103
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
module Instana
|
2
|
-
AUTOLOAD_DIRECTORIES = [:instrumentation, :frameworks].freeze
|
3
|
-
end
|
4
|
-
|
5
|
-
# Environment variables:
|
6
|
-
#
|
7
|
-
# INSTANA_DISABLE_AUTO_INSTR, unless set to false, will disable loading of automatic instrumentation
|
8
|
-
# INSTANA_DISABLE disables the gem entirely and therefore doesn't load automatic instrumentation
|
9
|
-
#
|
10
|
-
if (!ENV.key?('INSTANA_DISABLE_AUTO_INSTR') || ENV['INSTANA_DISABLE_AUTO_INSTR'] === 'false') && !ENV.key?('INSTANA_DISABLE')
|
11
|
-
#
|
12
|
-
# Load all of the files in the specified subdirectories
|
13
|
-
#
|
14
|
-
::Instana::AUTOLOAD_DIRECTORIES.each do |d|
|
15
|
-
pattern = File.join(File.dirname(__FILE__), d.to_s, '*.rb')
|
16
|
-
Dir.glob(pattern) do |f|
|
17
|
-
begin
|
18
|
-
require f
|
19
|
-
rescue => e
|
20
|
-
Instana.logger.error "#{__method__}:#{File.basename(__FILE__)}:#{__LINE__}: #{e.message}"
|
21
|
-
Instana.logger.debug { e.backtrace.join("\r\n") }
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
data/lib/instana/test.rb
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
module Instana
|
2
|
-
class Test
|
3
|
-
class << self
|
4
|
-
# Used at the start of the test suite to configure required environment
|
5
|
-
# variables (if missing)
|
6
|
-
#
|
7
|
-
def setup_environment
|
8
|
-
# Set defaults if not set
|
9
|
-
ENV['MEMCACHED_HOST'] ||= '127.0.0.1:11211'
|
10
|
-
ENV['POSTGRES_HOST'] ||= "127.0.0.1"
|
11
|
-
ENV['POSTGRES_USER'] ||= "stan"
|
12
|
-
ENV['POSTGRES_PASSWORD'] ||= "stanlikesdata"
|
13
|
-
ENV['TRAVIS_MYSQL_HOST'] ||= "127.0.0.1"
|
14
|
-
ENV['TRAVIS_MYSQL_USER'] ||= "root"
|
15
|
-
|
16
|
-
if !ENV.key?('DATABASE_URL')
|
17
|
-
if ENV['DB_FLAVOR'] == 'postgresql'
|
18
|
-
ENV['DATABASE_URL'] = "postgresql://#{ENV['POSTGRES_USER']}:#{ENV['POSTGRES_PASSWORD']}@#{ENV['POSTGRES_HOST']}:5432/#{ENV['POSTGRES_USER']}"
|
19
|
-
elsif ENV['DB_FLAVOR'] == 'mysql'
|
20
|
-
ENV['DATABASE_URL'] = "mysql://#{ENV['TRAVIS_MYSQL_USER']}:#{ENV['TRAVIS_MYSQL_PASS']}@#{ENV['TRAVIS_MYSQL_HOST']}:3306/travis_ci_test"
|
21
|
-
else
|
22
|
-
ENV['DB_FLAVOR'] ||= 'mysql2'
|
23
|
-
ENV['DATABASE_URL'] = "mysql2://#{ENV['TRAVIS_MYSQL_USER']}:#{ENV['TRAVIS_MYSQL_PASS']}@#{ENV['TRAVIS_MYSQL_HOST']}:3306/travis_ci_test"
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
Instana.logger.warn "Database connect string configured to: #{ENV['DATABASE_URL']}"
|
28
|
-
end
|
29
|
-
|
30
|
-
def postgresql?
|
31
|
-
ENV['DB_FLAVOR'] == 'postgresql'
|
32
|
-
end
|
33
|
-
|
34
|
-
def mysql2?
|
35
|
-
ENV['DB_FLAVOR'] == 'mysql2'
|
36
|
-
end
|
37
|
-
|
38
|
-
def mysql?
|
39
|
-
ENV['DB_FLAVOR'] == 'mysql'
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
data/test/apps/cuba.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require "cuba/safe"
|
2
|
-
|
3
|
-
Cuba.plugin ::Cuba::Safe
|
4
|
-
|
5
|
-
Cuba.define do
|
6
|
-
on get do
|
7
|
-
on "hello" do
|
8
|
-
res.write "Hello Instana!"
|
9
|
-
end
|
10
|
-
|
11
|
-
on "greet/:name" do |name|
|
12
|
-
res.write "Hello, #{name}"
|
13
|
-
end
|
14
|
-
|
15
|
-
on root do
|
16
|
-
res.redirect '/hello'
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
data/test/apps/roda.rb
DELETED