forked from open-telemetry/build-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move footnotes back together with the rendered table in Markdown (ope…
- Loading branch information
Showing
4 changed files
with
14 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
| Attribute | Type | Description | Examples | Requirement Level | | ||
|---|---|---|---|---| | ||
| `http.method` | string | . | `GET` | Required | | ||
| `http.url` | string | . | `.` | Recommended | | ||
| `http.url` | string | . [1] | `.` | Recommended | | ||
| `http.target` | string | . | `.` | Recommended | | ||
| `http.host` | string | . | `.` | Recommended | | ||
| `http.scheme` | string | . | `http` | Recommended | | ||
|
@@ -14,6 +14,8 @@ | |
| [`net.peer.name`](span-general.md) | string | . | `.` | Recommended | | ||
| [`net.peer.port`](span-general.md) | int | . | | Recommended | | ||
|
||
**[1]:** `http.url` MUST NOT contain credentials passed via URL in form of `https://username:[email protected]/`. In such case the attribute's value should be `https://www.example.com/`. | ||
|
||
Following attributes MUST be provided **at span creation time** (when provided at all), so they can be considered for sampling decisions: | ||
|
||
* `http.method` | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,9 @@ groups: | |
- id: url | ||
type: string | ||
brief: . | ||
note: > | ||
`http.url` MUST NOT contain credentials passed via URL in form of `https://username:[email protected]/`. | ||
In such case the attribute's value should be `https://www.example.com/`. | ||
sampling_relevant: true | ||
examples: ['.'] | ||
- id: target | ||
|