Skip to content

Commit

Permalink
refactor: add service name, span times attr definitions (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-steinfeld authored Apr 9, 2021
1 parent ce0bbb7 commit 04fb8c2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ commands = [
display_name: Start Time,
scope: EVENT,
sources: [QS],
type: ATTRIBUTE
type: ATTRIBUTE,
definition: {
source_field: SOURCE_FIELD_START_TIME
}
},
{
fqn: Span.end_time_millis,
Expand All @@ -44,7 +47,10 @@ commands = [
display_name: End Time,
scope: EVENT,
sources: [QS],
type: ATTRIBUTE
type: ATTRIBUTE,
definition: {
source_field: SOURCE_FIELD_END_TIME
}
},
{
fqn: Span.attributes.span_kind,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ commands = [
display_name: Service Name,
scope: SERVICE,
sources: [QS],
type: ATTRIBUTE
type: ATTRIBUTE,
definition: {
source_path: SERVICE_NAME
}
},
{
fqn: Service.host_header,
Expand Down

0 comments on commit 04fb8c2

Please sign in to comment.