Fix documentation linter errors (#8229)
@ -1,10 +1,11 @@ |
||||
--- |
||||
title: AWS |
||||
description: AWS Clients |
||||
weight: 30 |
||||
--- |
||||
|
||||
Sending logs from AWS services to Grafana Loki is a little different depending on what AWS service you are using: |
||||
|
||||
* [Elastic Compute Cloud (EC2)](ec2/) |
||||
* [Elastic Container Service (ECS)](ecs/) |
||||
* [Elastic Kubernetes Service (EKS)](eks/) |
||||
* [Elastic Compute Cloud (EC2)]({{<relref "./ec2/_index.md">}}) |
||||
* [Elastic Container Service (ECS)]({{<relref "./ecs/_index.md">}}) |
||||
* [Elastic Kubernetes Service (EKS)]({{<relref "./eks/_index.md">}}) |
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
@ -1,40 +1,41 @@ |
||||
--- |
||||
title: Stages |
||||
description: Stages |
||||
--- |
||||
# Stages |
||||
|
||||
This section is a collection of all stages Promtail supports in a |
||||
[Pipeline](../pipelines/). |
||||
[Pipeline]({{<relref "../pipelines/">}}). |
||||
|
||||
Parsing stages: |
||||
|
||||
- [docker](docker/): Extract data by parsing the log line using the standard Docker format. |
||||
- [cri](cri/): Extract data by parsing the log line using the standard CRI format. |
||||
- [regex](regex/): Extract data using a regular expression. |
||||
- [json](json/): Extract data by parsing the log line as JSON. |
||||
- [logfmt](logfmt/): Extract data by parsing the log line as logfmt. |
||||
- [replace](replace/): Replace data using a regular expression. |
||||
- [multiline](multiline/): Merge multiple lines into a multiline block. |
||||
- [docker]({{<relref "docker">}}): Extract data by parsing the log line using the standard Docker format. |
||||
- [cri]({{<relref "cri">}}): Extract data by parsing the log line using the standard CRI format. |
||||
- [regex]({{<relref "regex">}}): Extract data using a regular expression. |
||||
- [json]({{<relref "json">}}): Extract data by parsing the log line as JSON. |
||||
- [logfmt]({{<relref "logfmt">}}): Extract data by parsing the log line as logfmt. |
||||
- [replace]({{<relref "replace">}}): Replace data using a regular expression. |
||||
- [multiline]({{<relref "multiline">}}): Merge multiple lines into a multiline block. |
||||
|
||||
Transform stages: |
||||
|
||||
- [template](template/): Use Go templates to modify extracted data. |
||||
- [pack](pack/): Packs a log line in a JSON object allowing extracted values and labels to be placed inside the log line. |
||||
- [decolorize](decolorize/): Strips ANSI color sequences from the log line. |
||||
- [template]({{<relref "template">}}): Use Go templates to modify extracted data. |
||||
- [pack]({{<relref "pack">}}): Packs a log line in a JSON object allowing extracted values and labels to be placed inside the log line. |
||||
- [decolorize]({{<relref "decolorize">}}): Strips ANSI color sequences from the log line. |
||||
|
||||
Action stages: |
||||
|
||||
- [timestamp](timestamp/): Set the timestamp value for the log entry. |
||||
- [output](output/): Set the log line text. |
||||
- [labeldrop](labeldrop/): Drop label set for the log entry. |
||||
- [labelallow](labelallow/): Allow label set for the log entry. |
||||
- [labels](labels/): Update the label set for the log entry. |
||||
- [limit](limit/): Limit the rate lines will be sent to Loki. |
||||
- [static_labels](static_labels/): Add static-labels to the log entry. |
||||
- [metrics](metrics/): Calculate metrics based on extracted data. |
||||
- [tenant](tenant/): Set the tenant ID value to use for the log entry. |
||||
- [timestamp]({{<relref "timestamp">}}): Set the timestamp value for the log entry. |
||||
- [output]({{<relref "output">}}): Set the log line text. |
||||
- [labeldrop]({{<relref "labeldrop">}}): Drop label set for the log entry. |
||||
- [labelallow]({{<relref "labelallow">}}): Allow label set for the log entry. |
||||
- [labels]({{<relref "labels">}}): Update the label set for the log entry. |
||||
- [limit]({{<relref "limit">}}): Limit the rate lines will be sent to Loki. |
||||
- [static_labels]({{<relref "static_labels">}}): Add static-labels to the log entry. |
||||
- [metrics]({{<relref "metrics">}}): Calculate metrics based on extracted data. |
||||
- [tenant]({{<relref "tenant">}}): Set the tenant ID value to use for the log entry. |
||||
|
||||
Filtering stages: |
||||
|
||||
- [match](match/): Conditionally run stages based on the label set. |
||||
- [drop](drop/): Conditionally drop log lines based on several options. |
||||
- [match]({{<relref "match">}}): Conditionally run stages based on the label set. |
||||
- [drop]({{<relref "drop">}}): Conditionally drop log lines based on several options. |
||||
|
||||
|
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 119 KiB |
@ -1,9 +1,10 @@ |
||||
--- |
||||
title: Community |
||||
description: Community |
||||
weight: 1100 |
||||
--- |
||||
# Community |
||||
|
||||
1. [Governance](governance/) |
||||
1. [Getting in Touch](getting-in-touch/) |
||||
1. [Contributing](contributing/) |
||||
1. [Governance]({{<relref "governance">}}) |
||||
1. [Getting in Touch]({{<relref "getting-in-touch">}}) |
||||
1. [Contributing]({{<relref "contributing">}}) |
||||
|
||||
@ -1,10 +1,11 @@ |
||||
--- |
||||
title: Design documents |
||||
description: Design documents |
||||
weight: 1300 |
||||
--- |
||||
# Design documents |
||||
|
||||
- [Labels from Logs](labels/) |
||||
- [Promtail Push API](2020-02-promtail-push-api/) |
||||
- [Write-Ahead Logs](2020-09-write-ahead-log/) |
||||
- [Ordering Constraint Removal](2021-01-ordering-constraint-removal/) |
||||
- [Labels from Logs]({{<relref "labels">}}) |
||||
- [Promtail Push API]({{<relref "2020-02-Promtail-Push-API">}}) |
||||
- [Write-Ahead Logs]({{<relref "2020-09-Write-Ahead-Log">}}) |
||||
- [Ordering Constraint Removal]({{<relref "2021-01-Ordering-Constraint-Removal">}}) |
||||
|
||||
|
Before Width: | Height: | Size: 233 KiB After Width: | Height: | Size: 233 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |