Skip to content

Commit 610a646

Browse files
committed
Fixing bad links
Signed-off-by: Lynette Miles <[email protected]>
1 parent 5d179ee commit 610a646

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

pipeline/filters/checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The plugin supports the following configuration parameters
99
| Key | Description | Default |
1010
| :-- | :---------- | :------ |
1111
| `file` | The single value file that Fluent Bit will use as a lookup table to determine if the specified `lookup_key` exists. | _none_ |
12-
| `lookup_key` | The specific key to look up and determine if it exists. Supports [record accessor](../../administration/configuring-fluent-bit/classic-mode/record-accessor). | _none_ |
12+
| `lookup_key` | The specific key to look up and determine if it exists. Supports [record accessor](../../administration/configuring-fluent-bit/classic-mode/record-accessor.md). | _none_ |
1313
| `record` | The record to add if the `lookup_key` is found in the specified `file`. You can add multiple record parameters. | _none_ |
1414
| `mode` | Set the check mode. `exact` and `partial` are supported. | `exact`|
1515
| `print_query_time` | Print to stdout the elapsed query time for every matched record. | `false` |

pipeline/filters/log_to_metrics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ The plugin supports the following configuration parameters:
2626
| `metric_description` | Required. Sets a description for the metric. | |
2727
| `bucket` | Required for mode `histogram`. Defines a bucket for histograms. | For example, `0.75` |
2828
| `add_label` | Adds a custom label `NAME` and set the value to the value of `KEY`. | |
29-
| `label_field` | Includes a record field as label dimension in the metric. | Name of record key. Supports [record accessor](../../administration/configuring-fluent-bit/classic-mode/record-accessor) notation for nested fields. |
30-
| `value_field` | Required for modes `gauge` and `histogram`. Specifies the record field that holds a numerical value. | Name of record key. Supports [record accessor](../../administration/configuring-fluent-bit/classic-mode/record-accessor) notation for nested fields. |
31-
| `kubernetes_mode` | If enabled, adds `pod_id`, `pod_name`, `namespace_name`, `docker_id` and `container_name` to the metric as labels. This option is intended to be used in combination with the [Kubernetes](./kubernetes) filter plugin, which fills those fields. | |
29+
| `label_field` | Includes a record field as label dimension in the metric. | Name of record key. Supports [record accessor](../../administration/configuring-fluent-bit/classic-mode/record-accessor.md) notation for nested fields. |
30+
| `value_field` | Required for modes `gauge` and `histogram`. Specifies the record field that holds a numerical value. | Name of record key. Supports [record accessor](../../administration/configuring-fluent-bit/classic-mode/record-accessor.md) notation for nested fields. |
31+
| `kubernetes_mode` | If enabled, adds `pod_id`, `pod_name`, `namespace_name`, `docker_id` and `container_name` to the metric as labels. This option is intended to be used in combination with the [Kubernetes](./kubernetes.md) filter plugin, which fills those fields. | |
3232
| `Regex` | Includes records in which the content of `KEY` matches the regular expression. | `KEY REGEX` |
3333
| `Exclude` | Excludes records in which the content of `KEY` matches the regular expression. | `KEY REGEX` |
3434
| `Flush_Interval_Sec` | The interval for metrics emission, in seconds. If `Flush_Interval_Sec` and `Flush_Interval_Nsec` are either both unset or both set to `0`, the filter emits metrics immediately after each filter match. Otherwise, if either parameter is set to a non-zero value, the filter emits metrics at the specified interval. Longer intervals help lower resource consumption in high-load situations. Default value: `0`. | |

pipeline/outputs/kinesis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is the documentation for the core Fluent Bit Kinesis plugin written in C. I
1010

1111
This `kinesis_streams` plugin always uses a random partition key when uploading records to Kinesis through the [PutRecords API](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecords.html).
1212

13-
For information about how AWS credentials are fetched, see [AWS credentials](../../administration/aws-credentials).
13+
For information about how AWS credentials are fetched, see [AWS credentials](../../administration/aws-credentials.md).
1414

1515
## Configuration parameters
1616

pipeline/outputs/observe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Observe
22

3-
Use the [HTTP output plugin](./http) to flush your records [into Observe](https://docs.observeinc.com/en/latest/content/data-ingestion/forwarders/fluentbit.html). It issues a POST request with the data records in [MessagePack](http://msgpack.org) (or JSON) format.
3+
Use the [HTTP output plugin](`http`) to flush your records [into Observe](https://docs.observeinc.com/en/latest/content/data-ingestion/forwarders/fluentbit.html). It issues a POST request with the data records in [MessagePack](http://msgpack.org) (or JSON) format.
44

55
## Configuration parameters
66

pipeline/outputs/standard-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The _standard output_ plugin prints ingested data to standard output.
1717
fluent-bit -i cpu -o stdout -v
1818
```
1919

20-
This example directs the plugin to gather [CPU](../inputs/cpu-metrics) usage metrics and print them out to the standard output in a human-readable way:
20+
This example directs the plugin to gather [CPU](../inputs/cpu-metrics.md) usage metrics and print them out to the standard output in a human-readable way:
2121

2222
```shell
2323
fluent-bit -i cpu -o stdout -p format=msgpack -v

pipeline/processors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Additionally, filters can be implemented in a way that mimics the behavior of pr
66

77
{% hint style="info" %}
88

9-
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/configuration-file) support processors.
9+
Only [YAML configuration files](../../administration/configuring-fluent-bit/yaml/configuration-file.md) support processors.
1010

1111
{% endhint %}
1212

0 commit comments

Comments
 (0)