lib/opentelemetry/instrumentation/dalli/patches/server.rb in opentelemetry-instrumentation-dalli-0.18.1 vs lib/opentelemetry/instrumentation/dalli/patches/server.rb in opentelemetry-instrumentation-dalli-0.19.0
- old
+ new
@@ -12,13 +12,13 @@
module Server
def request(op, *args)
operation = Utils.opname(op, multi?)
attributes = {
'db.system' => 'memcached',
- 'db.statement' => Utils.format_command(operation, args),
'net.peer.name' => hostname,
'net.peer.port' => port
}
+ attributes['db.statement'] = Utils.format_command(operation, args) if config[:db_statement] == :include
attributes['peer.service'] = config[:peer_service] if config[:peer_service]
tracer.in_span(operation, attributes: attributes, kind: :client) do
super
end
end