1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
# frozen_string_literal: true
require_relative 'telemetry/base'
require_relative 'telemetry/no_op'
require_relative 'telemetry/otel'
require_relative 'telemetry/span_kind'
require_relative 'telemetry/span_status'
module Aws
# Observability is the extent to which a system's current state can be
# inferred from the data it emits. The data emitted is commonly referred
# as Telemetry. The AWS SDK for Ruby currently supports traces as
# a telemetry signal.
#
# A telemetry provider is used to emit telemetry data. By default, the
# {NoOpTelemetryProvider} will not record or emit any telemetry data.
# The SDK currently supports OpenTelemetry (OTel) as a provider. See
# {OTelProvider} for more information.
#
# If a provider isn't supported, you can implement your own provider by
# inheriting the following base classes and implementing the interfaces
# defined:
# * {TelemetryProviderBase}
# * {ContextManagerBase}
# * {TracerProviderBase}
# * {TracerBase}
# * {SpanBase}
module Telemetry
class << self
# @api private
def module_to_tracer_name(module_name)
"#{module_name.gsub('::', '.')}.client".downcase
end
# @api private
def http_request_attrs(context)
{
'http.method' => context.http_request.http_method,
'net.protocol.name' => 'http'
}.tap do |h|
h['net.protocol.version'] =
if context.client.is_a? Seahorse::Client::AsyncBase
'2'
else
Net::HTTP::HTTPVersion
end
unless context.config.stub_responses
h['net.peer.name'] = context.http_request.endpoint.host
h['net.peer.port'] = context.http_request.endpoint.port.to_s
end
if context.http_request.headers.key?('Content-Length')
h['http.request_content_length'] =
context.http_request.headers['Content-Length']
end
end
end
# @api private
def http_response_attrs(context)
{
'http.status_code' => context.http_response.status_code.to_s
}.tap do |h|
if context.http_response.headers.key?('Content-Length')
h['http.response_content_length'] =
context.http_response.headers['Content-Length']
end
if context.http_response.headers.key?('x-amz-request-id')
h['aws.request_id'] =
context.http_response.headers['x-amz-request-id']
end
end
end
end
end
end
|