Add distributed tracing (#399)

This change utilizes OpenTelemetry's automatic instrumentation to add
distributed tracing capabilities to VMPooler. This is a non-breaking
change as traces are processed in noop mode by default.
This commit is contained in:
Gene Liverman 2020-09-17 15:35:21 -04:00 committed by GitHub
parent 8dda72ebb3
commit 8f3039e321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 140 additions and 15 deletions

View file

@ -16,6 +16,13 @@ gem 'nokogiri', '~> 1.10'
gem 'spicy-proton', '~> 2.1'
gem 'concurrent-ruby', '~> 1.1'
gem 'opentelemetry-api', '~> 0.6.0'
gem 'opentelemetry-exporter-jaeger', '~> 0.6.0'
gem 'opentelemetry-instrumentation-concurrent_ruby', '~> 0.6.0'
gem 'opentelemetry-instrumentation-redis', '~> 0.6.0'
gem 'opentelemetry-instrumentation-sinatra', '~> 0.6.0'
gem 'opentelemetry-sdk', '~> 0.6.0'
group :development do
gem 'pry'
end