-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow multiple Inst or resource for export #92
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,7 @@ local function call_collector(exporter, pb_encoded_body) | |
return false, res_error or "unknown" | ||
end | ||
|
||
function _M.export_spans(self, spans) | ||
function _M.encode_spans(self, spans) | ||
assert(spans[1]) | ||
|
||
local body = { | ||
|
@@ -96,12 +96,57 @@ function _M.export_spans(self, spans) | |
} | ||
} | ||
} | ||
local tracers = {} | ||
local providers = {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto here - There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like the short names for clarity, but not a blocking opinion for sure There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ln 103-104 make pretty clear how this is being used in my mind which is already polluted with knowledge of the underlying otlp proto structure |
||
tracers[spans[1].tracer] = 1 | ||
providers[spans[1].tracer.provider] = 1 | ||
for _, span in ipairs(spans) do | ||
local rs_idx = providers[span.tracer.provider] | ||
local ils_idx = tracers[span.tracer] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. instrumentation library, maybe this should become There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh because rs is for resource spans and ils is for instrumentation library spans so this makes sense |
||
if not rs_idx then | ||
rs_idx = #body.resource_spans + 1 | ||
ils_idx = 1 | ||
providers[span.tracer.provider] = rs_idx | ||
tracers[span.tracer] = ils_idx | ||
table.insert( | ||
body.resource_spans, | ||
{ | ||
resource = { | ||
attributes = span.tracer.provider.resource.attrs, | ||
dropped_attributes_count = 0, | ||
}, | ||
instrumentation_library_spans = { | ||
{ | ||
instrumentation_library = { | ||
name = span.tracer.il.name, | ||
version = span.tracer.il.version, | ||
}, | ||
spans = {} | ||
}, | ||
}, | ||
}) | ||
elseif not ils_idx then | ||
ils_idx = #body.resource_spans[rs_idx].instrumentation_library_spans + 1 | ||
tracers[span.tracer] = ils_idx | ||
table.insert( | ||
body.resource_spans[rs_idx].instrumentation_library_spans, | ||
{ | ||
instrumentation_library = { | ||
name = span.tracer.il.name, | ||
version = span.tracer.il.version, | ||
}, | ||
spans = {} | ||
}) | ||
end | ||
table.insert( | ||
body.resource_spans[1].instrumentation_library_spans[1].spans, | ||
body.resource_spans[rs_idx].instrumentation_library_spans[ils_idx].spans, | ||
encoder.for_otlp(span)) | ||
end | ||
return call_collector(self, pb.encode(body)) | ||
return body | ||
end | ||
|
||
function _M.export_spans(self, spans) | ||
return call_collector(self, pb.encode(self:encode_spans(spans))) | ||
end | ||
|
||
function _M.shutdown(self) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is like
tracer_ils_idx_map
? 1:1 relationship betweentracer
and instrumentation library span index?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the set of all tracers in the incomoing set of spans, and the value stored is the index of that span's il on the ils of the span's provider's resource