-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate "span" into its own package (#1141)
- Loading branch information
Showing
12 changed files
with
82 additions
and
79 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
- key: apm-span | ||
title: APM Span | ||
description: Span-specific data for APM. | ||
fields: | ||
- name: view spans | ||
format: url | ||
label_template: "View Spans" | ||
|
||
- name: span | ||
type: group | ||
dynamic: false | ||
fields: | ||
|
||
- name: id | ||
type: long | ||
description: > | ||
A locally unique ID of the span. | ||
- name: name | ||
type: keyword | ||
count: 1 | ||
description: > | ||
Generic designation of a span in the scope of a transaction. | ||
- name: type | ||
type: keyword | ||
count: 1 | ||
description: > | ||
Keyword of specific relevance in the service's domain (eg: 'db.postgresql.query', 'template.erb', 'cache', etc). | ||
- name: start | ||
type: group | ||
description: | ||
fields: | ||
- name: us | ||
type: long | ||
count: 1 | ||
description: > | ||
Offset relative to the transaction's timestamp identifying the start of the span, in microseconds. | ||
- name: duration | ||
type: group | ||
description: | ||
fields: | ||
|
||
- name: us | ||
type: long | ||
count: 1 | ||
description: > | ||
Duration of the span, in microseconds. | ||
format: duration | ||
input_format: microseconds | ||
output_format: asMilliseconds | ||
output_precision: 0 | ||
|
||
- name: parent | ||
type: long | ||
description: > | ||
The locally unique ID of the parent of the span. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters