mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
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:
parent
8dda72ebb3
commit
8f3039e321
6 changed files with 140 additions and 15 deletions
7
Gemfile
7
Gemfile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue