Skip to content

Commit 8369971

Browse files
linting of table formats in use (#6711)
1 parent a058975 commit 8369971

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docs/logs/customizing-the-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ See [Program.cs](Program.cs) for complete example.
9595
It is also possible to configure the `Resource` by using following
9696
environmental variables:
9797

98-
| Environment variable | Description |
98+
| Environment variable | Description |
9999
| -------------------------- | -------------------------------------------------- |
100100
| `OTEL_RESOURCE_ATTRIBUTES` | Key-value pairs to be used as resource attributes. See the [Resource SDK specification](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.5.0/specification/resource/sdk.md#specifying-resource-information-via-an-environment-variable) for more details. |
101-
| `OTEL_SERVICE_NAME` | Sets the value of the `service.name` resource attribute. If `service.name` is also provided in `OTEL_RESOURCE_ATTRIBUTES`, then `OTEL_SERVICE_NAME` takes precedence. |
101+
| `OTEL_SERVICE_NAME` | Sets the value of the `service.name` resource attribute. If `service.name` is also provided in `OTEL_RESOURCE_ATTRIBUTES`, then `OTEL_SERVICE_NAME` takes precedence. |
102102

103103
## Log Filtering
104104

docs/metrics/customizing-the-sdk/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -530,10 +530,10 @@ environmental variables:
530530
> Programmatically calling `SetExemplarFilter` will override any defaults set
531531
using environment variables or configuration.
532532

533-
| Environment variable | Description | Notes |
534-
| -------------------------- | -------------------------------------------------- |-------|
533+
| Environment variable | Description | Notes |
534+
| -------------------------- | -------------------------------------------------- | ------- |
535535
| `OTEL_METRICS_EXEMPLAR_FILTER` | Sets the default `ExemplarFilter` to use for all metrics. | Added in `1.9.0` |
536-
| `OTEL_DOTNET_EXPERIMENTAL_METRICS_EXEMPLAR_FILTER_HISTOGRAMS` | Sets the default `ExemplarFilter` to use for histogram metrics. If set `OTEL_DOTNET_EXPERIMENTAL_METRICS_EXEMPLAR_FILTER_HISTOGRAMS` takes precedence over `OTEL_METRICS_EXEMPLAR_FILTER` for histogram metrics. | Experimental key (may be removed or changed in the future). Added in `1.9.0` |
536+
| `OTEL_DOTNET_EXPERIMENTAL_METRICS_EXEMPLAR_FILTER_HISTOGRAMS` | Sets the default `ExemplarFilter` to use for histogram metrics. If set `OTEL_DOTNET_EXPERIMENTAL_METRICS_EXEMPLAR_FILTER_HISTOGRAMS` takes precedence over `OTEL_METRICS_EXEMPLAR_FILTER` for histogram metrics. | Experimental key (may be removed or changed in the future). Added in `1.9.0` |
537537

538538
Allowed values:
539539

@@ -645,10 +645,10 @@ using var meterProvider = Sdk.CreateMeterProviderBuilder()
645645
It is also possible to configure the `Resource` by using following
646646
environmental variables:
647647

648-
| Environment variable | Description |
648+
| Environment variable | Description |
649649
| -------------------------- | -------------------------------------------------- |
650650
| `OTEL_RESOURCE_ATTRIBUTES` | Key-value pairs to be used as resource attributes. See the [Resource SDK specification](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.5.0/specification/resource/sdk.md#specifying-resource-information-via-an-environment-variable) for more details. |
651-
| `OTEL_SERVICE_NAME` | Sets the value of the `service.name` resource attribute. If `service.name` is also provided in `OTEL_RESOURCE_ATTRIBUTES`, then `OTEL_SERVICE_NAME` takes precedence. |
651+
| `OTEL_SERVICE_NAME` | Sets the value of the `service.name` resource attribute. If `service.name` is also provided in `OTEL_RESOURCE_ATTRIBUTES`, then `OTEL_SERVICE_NAME` takes precedence. |
652652

653653
## Advanced scenarios
654654

docs/trace/customizing-the-sdk/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,10 @@ var tracerProvider = Sdk.CreateTracerProviderBuilder()
335335
It is also possible to configure the `Resource` by using following
336336
environmental variables:
337337

338-
| Environment variable | Description |
338+
| Environment variable | Description |
339339
| -------------------------- | -------------------------------------------------- |
340340
| `OTEL_RESOURCE_ATTRIBUTES` | Key-value pairs to be used as resource attributes. See the [Resource SDK specification](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.5.0/specification/resource/sdk.md#specifying-resource-information-via-an-environment-variable) for more details. |
341-
| `OTEL_SERVICE_NAME` | Sets the value of the `service.name` resource attribute. If `service.name` is also provided in `OTEL_RESOURCE_ATTRIBUTES`, then `OTEL_SERVICE_NAME` takes precedence. |
341+
| `OTEL_SERVICE_NAME` | Sets the value of the `service.name` resource attribute. If `service.name` is also provided in `OTEL_RESOURCE_ATTRIBUTES`, then `OTEL_SERVICE_NAME` takes precedence. |
342342

343343
### Samplers
344344

@@ -366,10 +366,10 @@ var tracerProvider = Sdk.CreateTracerProviderBuilder()
366366
If using `1.8.0-rc.1` or newer it is also possible to configure the sampler by
367367
using the following environmental variables:
368368

369-
| Environment variable | Description |
369+
| Environment variable | Description |
370370
| -------------------------- | -------------------------------------------------- |
371371
| `OTEL_TRACES_SAMPLER` | Sampler to be used for traces. See the [General SDK Configuration specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md#general-sdk-configuration) for more details. |
372-
| `OTEL_TRACES_SAMPLER_ARG` | String value to be used as the sampler argument. |
372+
| `OTEL_TRACES_SAMPLER_ARG` | String value to be used as the sampler argument. |
373373

374374
The supported values for `OTEL_TRACES_SAMPLER` are:
375375

0 commit comments

Comments
 (0)