-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathaws_sdk_dynamodb.rb
More file actions
48 lines (42 loc) · 1.15 KB
/
aws_sdk_dynamodb.rb
File metadata and controls
48 lines (42 loc) · 1.15 KB
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
# (c) Copyright IBM Corp. 2021
# (c) Copyright Instana Inc. 2021
module Instana
module Instrumentation
class DynamoDB < Seahorse::Client::Plugin
class Handler < Seahorse::Client::Handler
def call(context)
dynamo_tags = {
op: format_operation(context.operation_name),
table: table_name_from(context)
}
::Instana.tracer.in_span(:dynamodb, attributes: {dynamodb: dynamo_tags}) { @handler.call(context) }
end
private
def table_name_from(context)
context.params[:table_name] || context.params[:global_table_name] || 'Unknown'
end
def format_operation(name)
case name
when :create_table
'create'
when :list_tables
'list'
when :get_item
'get'
when :put_item
'put'
when :update_item
'update'
when :delete_item
'delete'
else
name.to_s
end
end
end
def add_handlers(handlers, _config)
handlers.add(Handler, step: :initialize)
end
end
end
end