You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/general/trace.md
+40-2Lines changed: 40 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<!--- Hugo front matter used to generate the website version of this page:
2
2
linkTitle: Trace
3
-
aliases: [trace-general]
3
+
aliases: [trace-general, trace-compatibility]
4
4
--->
5
5
6
6
# Trace semantic conventions
@@ -21,7 +21,6 @@ can still be easily correlated and cross-analyzed.
21
21
The following semantic conventions for spans are defined:
22
22
23
23
***[General](attributes.md): General semantic attributes that may be used in describing different kinds of operations.**
24
-
*[Compatibility](trace-compatibility.md): For spans generated by compatibility components, e.g. OpenTracing Shim layer.
25
24
*[CloudEvents](/docs/cloudevents/README.md): Semantic Conventions for the CloudEvents spans.
26
25
*[Cloud Providers](/docs/cloud-providers/README.md): Semantic Conventions for cloud providers spans.
27
26
*[Database](/docs/database/database-spans.md): For SQL and NoSQL client call spans.
@@ -36,4 +35,43 @@ Apart from semantic conventions for traces, [metrics](metrics.md), [logs](logs.m
36
35
OpenTelemetry also defines the concept of overarching [Resources](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/specification/resource/sdk.md) with their own
|[`opentracing.ref_type`](/docs/registry/attributes/opentracing.md)| string | Parent-child Reference type [1]|`child_of`; `follows_from`|`Recommended`||
60
+
61
+
**[1]`opentracing.ref_type`:** The causal relationship between a child Span and a parent Span.
62
+
63
+
---
64
+
65
+
`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.
66
+
67
+
| Value | Description | Stability |
68
+
|---|---|---|
69
+
|`child_of`| The parent Span depends on the child Span in some capacity ||
70
+
|`follows_from`| The parent Span doesn't depend in any way on the result of the child Span ||
0 commit comments