Skip to content

Fix a few links + update link guidance in CONTRIBUTING.md #1609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ request may suggest changes accordingly.

### URLs

When cross-linking to a page in this repository, use a full relative path whenever
When cross-linking to a page in this repository, use a full absolute path whenever
possible. For example:

```text
[LTSV](pipeline/parsers/ltsv.md) and [Logfmt](pipeline/parsers/logfmt.md)
[LTSV](../pipeline/parsers/ltsv.md) and [Logfmt](../pipeline/parsers/logfmt.md)
```

### Vale
Expand Down
2 changes: 1 addition & 1 deletion local-testing/logging-pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ You can test logging pipelines locally to observe how they handles log messages.

## Create a configuration file

Start by creating a [Fluent Bit configuration file](/administration/configuring-fluent-bit/classic-mode/configuration-file) to test.
Start by creating a [Fluent Bit configuration file](../administration/configuring-fluent-bit/classic-mode/configuration-file) to test.

{% code title="fluent-bit.conf" %}
```text
Expand Down
4 changes: 2 additions & 2 deletions local-testing/validating-your-data-and-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ record --> stdout

Add data validation between each step to ensure your data structure is correct.

This example uses the [Expect](/pipeline/filters/expect) filter.
This example uses the [Expect](../pipeline/filters/expect) filter.

```mermaid
flowchart LR
Expand Down Expand Up @@ -99,7 +99,7 @@ The following Fluent Bit configuration file configures a pipeline to consume the
match *
```

If the JSON parser fails or is missing in the [Tail](/pipeline/inputs/tail) input (`parser json`), the Expect filter triggers the `exit` action.
If the JSON parser fails or is missing in the [Tail](../pipeline/inputs/tail) input (`parser json`), the Expect filter triggers the `exit` action.

To extend the pipeline, add a Grep filter to match records that map `label` containing a key called `name` with value the `abc`, and add an Expect filter to re-validate that condition:

Expand Down