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

Add opentracing.ref_type semantic convention. #2297

Merged
merged 7 commits into from
Jan 31, 2022
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
20 changes: 20 additions & 0 deletions semantic_conventions/trace/compatibility.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
groups:
- id: opentracing
prefix: opentracing
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'
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'
- id: follows_from
value: 'follows_from'
brief: 'The parent Span does not depend in any way on the result of the child Span'
37 changes: 37 additions & 0 deletions specification/trace/semantic_conventions/compatibility.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Semantic conventions for Compatibility components
carlosalberto marked this conversation as resolved.
Show resolved Hide resolved

**Status**: [Experimental](../../document-status.md)

This document defines trace semantic conventions used by the
[compatibility](../../compatibility/) components.

<!-- Re-generate TOC with `markdown-toc --no-first-h1 -i` -->

<!-- toc -->

- [OpenTracing](#opentracing)

<!-- tocstop -->

## OpenTracing

`Link`s created by the OpenTracing Shim MUST set `opentracing.ref_type`
with one of the accepted values, describing the direct causal relationships
between a child Span and a parent Span, as defined by
[OpenTracing](https://github.com/opentracing/specification/blob/master/specification.md).


<!-- semconv opentracing -->
| Attribute | Type | Description | Examples | Required |
|---|---|---|---|---|
| `opentracing.ref_type` | string | Parent-child Reference type [1] | `child_of` | No |

**[1]:** The causal relationship between a child Span and a parent Span.

`opentracing.ref_type` MUST be one of the following:

| Value | Description |
|---|---|
| `child_of` | The parent Span depends on the child Span in some capacity |
| `follows_from` | The parent Span does not depend in any way on the result of the child Span |
<!-- endsemconv -->