Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Typos found by misspell after fixing the Makefiles.
  • Loading branch information
atoulme authored Feb 16, 2025
1 parent 737be2d commit 4037e57
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG-API.md
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,9 @@ If you are looking for user-facing changes, check out [CHANGELOG.md](./CHANGELOG
### 🚩 Deprecations 🚩

- `pkg/stanza`: Deprecate 'helper.EncodingConfig' and 'helper.NewEncodingConfig' (#25846)
- `pkg/stanza`: Deprecate encoding related elements of helper pacakge, in favor of new decoder package (#26019)
- `pkg/stanza`: Deprecate encoding related elements of helper package, in favor of new decoder package (#26019)
Includes the following deprecations | - Decoder - NewDecoder - LookupEncoding - IsNop
- `pkg/stanza`: Deprecate tokenization related elements of helper pacakge, in favor of new tokenize package (#25914)
- `pkg/stanza`: Deprecate tokenization related elements of helper package, in favor of new tokenize package (#25914)
Includes the following deprecations | - Flusher - FlusherConfig - NewFlusherConfig - Multiline - MultilineConfig - NewMultilineConfig - NewLineStartSplitFunc - NewLineEndSplitFunc - NewNewlineSplitFunc - Splitter - SplitterConfig - NewSplitterConfig - SplitNone

### 💡 Enhancements 💡
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./
- `otlpjsonfilereceiver`: Include file attributes and append it to the log record (#36641)
- `routingconnector`: The connector splits the original payload so that it may be emitted in parts to each route. (#37390)
- `pkg/stanza`: Fix default source identifier in recombine operator (#37210)
Its defualt value is now aligned with the semantic conventions: `attributes["log.file.path"]`
Its default value is now aligned with the semantic conventions: `attributes["log.file.path"]`

- `tailsamplingprocessor`: Fixed sampling decision metrics `otelcol_processor_tail_sampling_sampling_trace_dropped_too_early` and `otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total`, these were sometimes overcounted. (#37212)
As a result of this change non-zero values of `otelcol_processor_tail_sampling_sampling_trace_dropped_too_early`
Expand Down Expand Up @@ -789,7 +789,7 @@ arrow.waiter_limit -> admission.waiter_limit

### 🚀 New components 🚀

- `azurelogs_translater`: Adds a new translater that converts Azure EventHub logs to OpenTelemetry logs used by the Azure Events Hub receiver. (#39704)
- `azurelogs_translator`: Adds a new translator that converts Azure EventHub logs to OpenTelemetry logs used by the Azure Events Hub receiver. (#39704)
- `dorisexporter`: logs implementation (#33479)
- `dorisexporter`: traces implementation (#33479)

Expand Down
2 changes: 1 addition & 1 deletion pkg/stanza/docs/operators/key_value_parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The `key_value_parser` operator parses the string-type field selected by `parse_
| --- | --- | --- |
| `id` | `key_value_parser` | A unique identifier for the operator. |
| `delimiter` | `=` | The delimiter used for splitting a value into a key value pair. |
| `pair_delimiter` | | The delimiter used for seperating key value pairs, defaults to whitespace. |
| `pair_delimiter` | | The delimiter used for separating key value pairs, defaults to whitespace. |
| `output` | Next in pipeline | The connected operator(s) that will receive all outbound entries. |
| `parse_from` | `body` | A [field](../types/field.md) that indicates the field to be parsed into key value pairs. |
| `parse_to` | `attributes` | A [field](../types/field.md) that indicates the field to be parsed as into key value pairs. |
Expand Down
2 changes: 1 addition & 1 deletion pkg/stanza/docs/operators/noop.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ operators:
#### Why is this necessary?
The last operator is always responsible for emitting logs from the receiver. In non-linear pipelines, it is sometimes necessary to explictly direct logs to the final operator. In many such cases, the final operator performs some work. However, if no more work is required, the `noop` operator can serve as a final operator.
The last operator is always responsible for emitting logs from the receiver. In non-linear pipelines, it is sometimes necessary to explicitly direct logs to the final operator. In many such cases, the final operator performs some work. However, if no more work is required, the `noop` operator can serve as a final operator.
4 changes: 2 additions & 2 deletions pkg/stanza/docs/operators/syslog_input.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ TCP Configuration:
```yaml
- type: syslog_input
tcp:
listen_adress: "0.0.0.0:54526"
listen_address: "0.0.0.0:54526"
syslog:
protocol: rfc5424
```
Expand All @@ -36,7 +36,7 @@ UDP Configuration:
```yaml
- type: syslog_input
udp:
listen_adress: "0.0.0.0:54526"
listen_address: "0.0.0.0:54526"
syslog:
protocol: rfc3164
location: UTC
Expand Down
2 changes: 1 addition & 1 deletion pkg/stanza/docs/operators/udp_input.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Configuration:

```yaml
- type: udp_input
listen_adress: "0.0.0.0:54526"
listen_address: "0.0.0.0:54526"
```
Send a log:
Expand Down
2 changes: 1 addition & 1 deletion pkg/stanza/docs/types/entry.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ Represented in `json` format, an entry may look like the following:
}
```

Throughout the documentation, `json` format is used to represent entries. Fields are typically ommitted unless relevant to the behavior being described.
Throughout the documentation, `json` format is used to represent entries. Fields are typically omitted unless relevant to the behavior being described.
2 changes: 1 addition & 1 deletion pkg/stanza/docs/types/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ receivers:
value: baz
```

### Emitting from a reciever
### Emitting from a receiver

By default, the last operator in a sequence will emit logs from the receiver.

Expand Down
2 changes: 1 addition & 1 deletion pkg/stanza/docs/types/severity.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Parser operators can parse a severity and attach the resulting value to a log en
| `parse_from` | required | The [field](../types/field.md) from which the value will be parsed. |
| `preset` | `default` | A predefined set of values that should be interpretted at specific severity levels. |
| `mapping` | | A custom set of values that should be interpretted at designated severity levels. |
| `overwrite_text` | `false` | If `true`, the severity text will be set to the [recommeneded short name](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/data-model.md#displaying-severity) corresponding to the severity number. |
| `overwrite_text` | `false` | If `true`, the severity text will be set to the [recommended short name](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/logs/data-model.md#displaying-severity) corresponding to the severity number. |

Note that by default the severity _text_ will be set to the original value which was interpreted into a severity number. In order to set the severity text to a standard short name (e.g. `ERROR`, `INFO3`, etc.), set `overwrite_text` to `true`.

Expand Down

0 comments on commit 4037e57

Please sign in to comment.