Skip to content
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

Mark span default as non-private #830

Merged
merged 6 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
span default is public
  • Loading branch information
nelsitoPuglisi committed May 15, 2024
commit 8ad414c92412aacb084ca2e6471b0442e12d2f4a
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ internal fun <T> SpanService.startSpanCapture(obj: T, mapper: T.() -> StartSpanD
return startSpan(
name = data.schemaType.fixedObjectName,
startTimeMs = data.spanStartTimeMs,
type = data.schemaType.telemetryType,
private = false
type = data.schemaType.telemetryType
)?.apply {
data.schemaType.attributes().forEach {
addAttribute(it.key, it.value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ internal open class RnActionDataSource(
startTimeMs = startTime,
endTimeMs = endTime,
type = schemaType.telemetryType,
private = false,
attributes = schemaType.attributes()
)
}
Expand Down