Skip to content

Commit

Permalink
fix the links in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
namco1992 committed Dec 20, 2024
1 parent 9b8733a commit 488283f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions receiver/syslogreceiver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ Parses Syslogs received over TCP or UDP.
| `retry_on_failure.initial_interval` | `1 second` | Time to wait after the first failure before retrying. |
| `retry_on_failure.max_interval` | `30 seconds` | Upper bound on retry backoff interval. Once this value is reached the delay between consecutive retries will remain constant at the specified value. |
| `retry_on_failure.max_elapsed_time` | `5 minutes` | Maximum amount of time (including retries) spent trying to send a logs batch to a downstream consumer. Once this value is reached, the data is discarded. Retrying never stops if set to `0`. |
| `parser.parse_from` | `body` | The [field](../types/field.md) from which the value will be parsed. |
| `parser.parse_to` | `attributes` | The [field](../types/field.md) to which the value will be parsed. |
| `parser.on_error` | `send` | The behavior of the operator if it encounters an error. See [on_error](../types/on_error.md). |
| `parser.if` | | An [expression](../types/expression.md) that, when set, will be evaluated to determine whether this operator should be used for the given entry. This allows you to do easy conditional parsing without branching logic with routers. |
| `parser.timestamp` | `nil` | An optional [timestamp](../types/timestamp.md) block which will parse a timestamp field before passing the entry to the output operator |
| `parser.severity` | `nil` | An optional [severity](../types/severity.md) block which will parse a severity field before passing the entry to the output operator |
| `parser.parse_from` | `body` | The [field](../../pkg/stanza/docs/types/field.md) from which the value will be parsed. |
| `parser.parse_to` | `attributes` | The [field](../../pkg/stanza/docs/types/field.md) to which the value will be parsed. |
| `parser.on_error` | `send` | The behavior of the operator if it encounters an error. See [on_error](../../pkg/stanza/docs/types/on_error.md). |
| `parser.if` | | An [expression](../../pkg/stanza/docs/types/expression.md) that, when set, will be evaluated to determine whether this operator should be used for the given entry. This allows you to do easy conditional parsing without branching logic with routers. |
| `parser.timestamp` | `nil` | An optional [timestamp](../../pkg/stanza/docs/types/timestamp.md) block which will parse a timestamp field before passing the entry to the output operator |
| `parser.severity` | `nil` | An optional [severity](../../pkg/stanza/docs/types/severity.md) block which will parse a severity field before passing the entry to the output operator |
### Operators

Each operator performs a simple responsibility, such as parsing a timestamp or JSON. Chain together operators to process logs into a desired format.
Expand Down

0 comments on commit 488283f

Please sign in to comment.