1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-06-26 02:30:22 +02:00

tracing: migrate from OpenTracing to OpenTelemetry

- still uses Jaeger client (`AgentExporter`) and supports similar configuration except host + port which can be done via https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/jaeger#how-can-i-configure-the-jaeger-exporter
This commit is contained in:
cn
2021-05-28 11:15:14 +02:00
committed by Christian Nicolai
parent fc0fe3c6d5
commit fe2ef47675
7 changed files with 50 additions and 45 deletions

View File

@ -24,9 +24,7 @@ describe Dyndnsd::Daemon do
app = Rack::Auth::Basic.new(daemon, 'DynDNS', &daemon.method(:authorized?))
app = Dyndnsd::Responder::DynDNSStyle.new(app)
Rack::Tracer.new(app, trust_incoming_span: false)
Dyndnsd::Responder::DynDNSStyle.new(app)
end
it 'requires authentication' do