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
ci: add md linter rule to only use dash for unordered lists (#2205)
* ci: add md linter rule to only use dash for unordered lists
* style: use unordered list as dash in READMEs
* chore: comment on markdown lint rule
* fix: unintentional replace
Copy file name to clipboardexpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -42,10 +42,10 @@ A repository for OpenTelemetry JavaScript contributions that are not part of the
42
42
43
43
This project includes:
44
44
45
-
*[Instrumentations & other plugins](./plugins),
46
-
*[Metapackages](./metapackages),
47
-
*[Context Propagators](./propagators),
48
-
*[Resource Detectors](./detectors).
45
+
-[Instrumentations & other plugins](./plugins),
46
+
-[Metapackages](./metapackages),
47
+
-[Context Propagators](./propagators),
48
+
-[Resource Detectors](./detectors).
49
49
50
50
**Instrumentations**: OpenTelemetry can collect tracing data automatically using instrumentations. Vendors/Users can also create and use their own.
51
51
@@ -59,9 +59,9 @@ Stability level for components in this repository follow the definitions in [CON
59
59
60
60
Packages in this repository have a variable range of support for Node.JS and browser versions which for each package depend on
61
61
62
-
* the activeness of the owners of those packages,
63
-
* used techniques or runtime features and
64
-
* in the case of the auto-instrumentations, the supported runtime versions for the underlying package.
62
+
- the activeness of the owners of those packages,
63
+
- used techniques or runtime features and
64
+
- in the case of the auto-instrumentations, the supported runtime versions for the underlying package.
65
65
66
66
See the `README.md` files and the `engines` field in the `package.json` files for the respective packages for support information about that package.
67
67
@@ -79,9 +79,9 @@ We'd love your help! Use tags [up-for-grabs][up-for-grabs-issues] and [good firs
79
79
80
80
## Useful links
81
81
82
-
* For more information on OpenTelemetry, visit [OpenTelemetry.io](https://opentelemetry.io/)
83
-
* For help or feedback on this project, join us in [GitHub Discussions][discussions-url] or in [Slack](https://cloud-native.slack.com/archives/C01NL1GRPQR)
84
-
* For more 3rd party components for JS as well as other languages, check [OpenTelemetry Registry](https://opentelemetry.io/registry/)
82
+
- For more information on OpenTelemetry, visit [OpenTelemetry.io](https://opentelemetry.io/)
83
+
- For help or feedback on this project, join us in [GitHub Discussions][discussions-url] or in [Slack](https://cloud-native.slack.com/archives/C01NL1GRPQR)
84
+
- For more 3rd party components for JS as well as other languages, check [OpenTelemetry Registry](https://opentelemetry.io/registry/)
@@ -112,10 +112,10 @@ Publish the GitHub release, ensuring that the tag points to the newly landed com
112
112
113
113
## Update CHANGELOG
114
114
115
-
* After releasing is done, update the [CHANGELOG.md](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md) and start new Unreleased label.
116
-
* Create a new commit with the exact title: `Post Release: update CHANGELOG.md`.
117
-
* Go through PR review and merge it to GitHub main branch.
115
+
- After releasing is done, update the [CHANGELOG.md](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md) and start new Unreleased label.
116
+
- Create a new commit with the exact title: `Post Release: update CHANGELOG.md`.
117
+
- Go through PR review and merge it to GitHub main branch.
118
118
119
119
## Known Issues
120
120
121
-
* The `examples/` and `getting-started/` folders are not part of lerna packages, we need to manually bump the version in `package.json`.
121
+
- The `examples/` and `getting-started/` folders are not part of lerna packages, we need to manually bump the version in `package.json`.
Copy file name to clipboardexpand all lines: archive/opentelemetry-propagator-grpc-census-binary/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@
5
5
6
6
OpenTelemetry gRPC Census propagator provides gRPC header propagation for systems that use the OpenCensus 'grpc-trace-bin' binary header format. This allows for context propagation when either:
7
7
8
-
* incoming gRPC calls come from services already instrumented using OpenCensus
9
-
* outgoing gRPC calls go to services already instrumented using OpenCensus
8
+
- incoming gRPC calls come from services already instrumented using OpenCensus
9
+
- outgoing gRPC calls go to services already instrumented using OpenCensus
10
10
11
11
This propagator works in conjunction with the OpenTelemetry [gRPC plugin](https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/exporter-trace-otlp-grpc).
12
12
@@ -43,9 +43,9 @@ See [binary-format.ts](https://github.com/census-instrumentation/opencensus-node
43
43
44
44
## Useful links
45
45
46
-
* For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
47
-
* For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
48
-
* For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
46
+
- For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
47
+
- For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
48
+
- For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
Copy file name to clipboardexpand all lines: plugins/node/opentelemetry-instrumentation-pino/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,9 @@ logger.info('foobar');
55
55
56
56
For the current active span, the following fields are injected. These field names can be optionally configured via `logKeys` in the PinoInstrumentation config:
57
57
58
-
*`trace_id`
59
-
*`span_id`
60
-
*`trace_flags`
58
+
-`trace_id`
59
+
-`span_id`
60
+
-`trace_flags`
61
61
62
62
When no span context is active or the span context is invalid, injection is skipped.
63
63
@@ -71,9 +71,9 @@ This package does not currently generate any attributes from semantic convention
71
71
72
72
## Useful links
73
73
74
-
* For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
75
-
* For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
76
-
* For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
74
+
- For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
75
+
- For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
76
+
- For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
Copy file name to clipboardexpand all lines: propagators/opentelemetry-propagator-instana/README.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -40,36 +40,36 @@ There are three headers that the propagator handles: `X-INSTANA-T` (the trace ID
40
40
41
41
Example header triplet:
42
42
43
-
*`X-INSTANA-T: 80f198ee56343ba864fe8b2a57d3eff7`,
44
-
*`X-INSTANA-S: e457b5a2e4d86bd1`,
45
-
*`X-INSTANA-L: 1`.
43
+
-`X-INSTANA-T: 80f198ee56343ba864fe8b2a57d3eff7`,
44
+
-`X-INSTANA-S: e457b5a2e4d86bd1`,
45
+
-`X-INSTANA-L: 1`.
46
46
47
47
A short summary for each of the headers is provided below. More details are available at <https://www.ibm.com/docs/en/obi/current?topic=monitoring-traces#tracing-headers>.
48
48
49
49
### X-INSTANA-T -- trace ID
50
50
51
-
* A string of either 16 or 32 characters from the alphabet `0-9a-f`, representing either a 64 bit or 128 bit ID.
52
-
* This header corresponds to the [OpenTelemetry TraceId](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#spancontext).
53
-
* If the propagator receives an X-INSTANA-T header value that is shorter than 32 characters when _extracting_ headers into the OpenTelemetry span context, it will left-pad the string with the character "0" to length 32.
54
-
* No length transformation is applied when _injecting_ the span context into headers.
51
+
- A string of either 16 or 32 characters from the alphabet `0-9a-f`, representing either a 64 bit or 128 bit ID.
52
+
- This header corresponds to the [OpenTelemetry TraceId](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#spancontext).
53
+
- If the propagator receives an X-INSTANA-T header value that is shorter than 32 characters when _extracting_ headers into the OpenTelemetry span context, it will left-pad the string with the character "0" to length 32.
54
+
- No length transformation is applied when _injecting_ the span context into headers.
55
55
56
56
### X-INSTANA-S -- parent span ID
57
57
58
-
* Format: A string of 16 characters from the alphabet `0-9a-f`, representing a 64 bit ID.
59
-
* This header corresponds to the [OpenTelemetry SpanId](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#spancontext).
58
+
- Format: A string of 16 characters from the alphabet `0-9a-f`, representing a 64 bit ID.
59
+
- This header corresponds to the [OpenTelemetry SpanId](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#spancontext).
60
60
61
61
### X-INSTANA-L - sampling level
62
62
63
-
* The only two valid values are `1` and `0`.
64
-
* A level of `1` means that this request is to be sampled, a level of `0` means that the request should not be sampled.
65
-
* This header corresponds to the sampling bit of the [OpenTelemetry TraceFlags](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#spancontext).
63
+
- The only two valid values are `1` and `0`.
64
+
- A level of `1` means that this request is to be sampled, a level of `0` means that the request should not be sampled.
65
+
- This header corresponds to the sampling bit of the [OpenTelemetry TraceFlags](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#spancontext).
66
66
67
67
## Useful links
68
68
69
-
* For more information on Instana, visit <https://www.instana.com/> and [Instana' documentation](https://www.ibm.com/docs/en/obi/current).
70
-
* For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
71
-
* For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
72
-
* For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
69
+
- For more information on Instana, visit <https://www.instana.com/> and [Instana' documentation](https://www.ibm.com/docs/en/obi/current).
70
+
- For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
71
+
- For more about OpenTelemetry JavaScript: <https://github.com/open-telemetry/opentelemetry-js>
72
+
- For help or feedback on this project, join us in [GitHub Discussions][discussions-url]
0 commit comments