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
and [metric requirement level](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/metric-requirement-level.md) conventions.
21
21
22
-
Refer to the [syntax](https://github.com/open-telemetry/build-tools/tree/v0.17.0/semantic-conventions/syntax.md)
22
+
Refer to the [syntax](https://github.com/open-telemetry/build-tools/tree/v0.18.0/semantic-conventions/syntax.md)
23
23
for how to write the YAML files for semantic conventions and what the YAML properties mean.
24
24
25
25
A schema file for VS code is configured in the `/.vscode/settings.json` of this
26
26
repository, enabling auto-completion and additional checks. Refer to
27
-
[the generator README](https://github.com/open-telemetry/build-tools/tree/v0.17.0/semantic-conventions/README.md) for what extension you need.
27
+
[the generator README](https://github.com/open-telemetry/build-tools/tree/v0.18.0/semantic-conventions/README.md) for what extension you need.
28
28
29
29
## Generating markdown
30
30
@@ -35,7 +35,7 @@ formatted Markdown tables for all semantic conventions in the specification. Run
35
35
make table-generation
36
36
```
37
37
38
-
For more information, see the [semantic convention generator](https://github.com/open-telemetry/build-tools/tree/v0.17.0/semantic-conventions)
38
+
For more information, see the [semantic convention generator](https://github.com/open-telemetry/build-tools/tree/v0.18.0/semantic-conventions)
39
39
in the OpenTelemetry build tools repository.
40
40
Using this build tool, it is also possible to generate code for use in OpenTelemetry
Copy file name to clipboardExpand all lines: specification/trace/semantic_conventions/http.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -56,11 +56,11 @@ and various HTTP versions like 1.1, 2 and SPDY.
56
56
HTTP spans MUST follow the overall [guidelines for span names](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#span).
57
57
HTTP server span names SHOULD be `{http.request.method} {http.route}` if there is a
58
58
(low-cardinality) `http.route` available.
59
-
HTTP server span names SHOULD be `{http.method}` if there is no (low-cardinality)
59
+
HTTP server span names SHOULD be `{http.request.method}` if there is no (low-cardinality)
60
60
`http.route` available.
61
61
HTTP client spans have no `http.route` attribute since client-side instrumentation
62
62
is not generally aware of the "route", and therefore HTTP client spans SHOULD use
63
-
`{http.method}`.
63
+
`{http.request.method}`.
64
64
Instrumentation MUST NOT default to using URI
65
65
path as span name, but MAY provide hooks to allow custom logic to override the
0 commit comments