Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions instana/json_span.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ def __init__(self, **kwds):

class SDKData(object):
name = None
Type = None
type = None
arguments = None
Return = None
return = None
custom = None

def __init__(self, **kwds):
Expand Down
2 changes: 1 addition & 1 deletion instana/recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def build_sdk_span(self, span):
sdk_data = SDKData(name=span.operation_name,
custom=custom_data)

sdk_data.Type = self.get_span_kind(span)
sdk_data.type = self.get_span_kind(span)
data = Data(service=instana.singletons.agent.sensor.options.service_name,
sdk=sdk_data)
entity_from = {'e': instana.singletons.agent.from_.pid,
Expand Down