-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] move opentracing to the registry (#900)
Co-authored-by: Joao Grassi <[email protected]> Co-authored-by: Liudmila Molkova <[email protected]>
- Loading branch information
1 parent
a776eaf
commit c65428b
Showing
8 changed files
with
52 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!--- Hugo front matter used to generate the website version of this page: | ||
---> | ||
|
||
# OpenTracing | ||
|
||
## OpenTracing Attributes | ||
|
||
<!-- semconv registry.opentracing(omit_requirement_level) --> | ||
| Attribute | Type | Description | Examples | Stability | | ||
|---|---|---|---|---| | ||
| `opentracing.ref_type` | string | Parent-child Reference type [1] | `child_of` | ![Experimental](https://img.shields.io/badge/-experimental-blue) | | ||
|
||
**[1]:** The causal relationship between a child Span and a parent Span. | ||
|
||
`opentracing.ref_type` has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used. | ||
|
||
| Value | Description | Stability | | ||
|---|---|---| | ||
| `child_of` | The parent Span depends on the child Span in some capacity | ![Experimental](https://img.shields.io/badge/-experimental-blue) | | ||
| `follows_from` | The parent Span doesn't depend in any way on the result of the child Span | ![Experimental](https://img.shields.io/badge/-experimental-blue) | | ||
<!-- endsemconv --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
groups: | ||
- id: registry.opentracing | ||
prefix: opentracing | ||
type: attribute_group | ||
brief: Attributes used by the OpenTracing Shim layer. | ||
attributes: | ||
- id: ref_type | ||
brief: 'Parent-child Reference type' | ||
stability: experimental | ||
note: > | ||
The causal relationship between a child Span and a parent Span. | ||
type: | ||
allow_custom_values: true | ||
members: | ||
- id: child_of | ||
value: 'child_of' | ||
brief: "The parent Span depends on the child Span in some capacity" | ||
stability: experimental | ||
- id: follows_from | ||
value: 'follows_from' | ||
brief: "The parent Span doesn't depend in any way on the result of the child Span" | ||
stability: experimental |
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 |
---|---|---|
@@ -1,24 +1,9 @@ | ||
groups: | ||
- id: opentracing | ||
prefix: opentracing | ||
type: span | ||
brief: 'This document defines semantic conventions for the OpenTracing Shim' | ||
note: > | ||
These conventions are used by the OpenTracing Shim layer. | ||
attributes: | ||
- id: ref_type | ||
brief: 'Parent-child Reference type' | ||
stability: experimental | ||
note: > | ||
The causal relationship between a child Span and a parent Span. | ||
type: | ||
allow_custom_values: false | ||
members: | ||
- id: child_of | ||
value: 'child_of' | ||
brief: "The parent Span depends on the child Span in some capacity" | ||
stability: experimental | ||
- id: follows_from | ||
value: 'follows_from' | ||
brief: "The parent Span doesn't depend in any way on the result of the child Span" | ||
stability: experimental | ||
- ref: opentracing.ref_type | ||
requirement_level: recommended |