Sha256: a354b29c9ff8d8ed51f56930b006569ae8478e34e28da878f69fc3af3a70d039
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 require 'opentelemetry-instrumentation-rack' module OpenTelemetry module Instrumentation module Sinatra module Middlewares # Middleware to trace Sinatra requests class TracerMiddleware def initialize(app) @app = app end def call(env) response = @app.call(env) ensure trace_response(env, response) end def trace_response(env, response) span = OpenTelemetry::Instrumentation::Rack.current_span return unless span.recording? span.set_attribute('http.route', env['sinatra.route'].split.last) if env['sinatra.route'] span.name = env['sinatra.route'] if env['sinatra.route'] sinatra_response = ::Sinatra::Response.new([], response.first) return unless sinatra_response.server_error? span.record_exception(env['sinatra.error']) if env['sinatra.error'] span.status = OpenTelemetry::Trace::Status.error end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-instrumentation-sinatra-0.21.3 | lib/opentelemetry/instrumentation/sinatra/middlewares/tracer_middleware.rb |