-
Notifications
You must be signed in to change notification settings - Fork 545
Fixing broken links per #2253 #2254
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ To build and install Fluent Bit from source, you must also install the following | |
| - `libyaml-dev` | ||
| - `pkg-config` | ||
|
|
||
| Additionally, certain [input](../pipeline/inputs.md) or [output](../pipeline/outputs.md) plugins might depend on additional components. For example, some plugins require Kafka. | ||
| Additionally, certain [input](../../../pipeline/inputs.md) or [output](../../../pipeline/outputs.md) plugins might depend on additional components. For example, some plugins require Kafka. | ||
|
|
||
| ## Prepare environment | ||
|
|
||
|
|
@@ -305,7 +305,7 @@ The following table describes the output plugins available: | |
| | [`FLB_OUT_ORACLE_LOG_ANALYTICS`](../../../pipeline/outputs/oci-logging-analytics.md) | Enable Oracle Cloud Infrastructure Logging output plugin | `On` | | ||
| | [`FLB_OUT_PGSQL`](../../../pipeline/outputs/postgresql.md) | Enable PostgreSQL output plugin | `Off` | | ||
| | [`FLB_OUT_PLOT`](../../../pipeline/outputs/plot.md) | Enable Plot output plugin | `On` | | ||
| | [`FLB_OUT_PROMETHEUS_EXPORTER`](../../../pipeline/inputs/prometheus-exporter.md) | Enable Prometheus exporter output plugin | `On` | | ||
| | [`FLB_OUT_PROMETHEUS_EXPORTER`](../../../pipeline/outputs/prometheus-exporter.md) | Enable Prometheus exporter output plugin | `On` | | ||
| | [`FLB_OUT_PROMETHEUS_REMOTE_WRITE`](../../../pipeline/inputs/prometheus-remote-write.md) | Enable Prometheus remote write output plugin | `On` | | ||
|
Comment on lines
+308
to
309
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: # Find Prometheus remote write documentation files
find . -type f -name "*prometheus-remote-write*" 2>/dev/null | head -20Repository: fluent/fluent-bit-docs Length of output: 156 🏁 Script executed: # Also check the actual directory structure around the pipeline docs
find . -path "*pipeline/outputs*" -name "*.md" | grep -i prometheus
find . -path "*pipeline/inputs*" -name "*.md" | grep -i prometheusRepository: fluent/fluent-bit-docs Length of output: 286 Fix incorrect documentation link for Prometheus remote write output plugin. Line 309 references 🤖 Prompt for AI Agents |
||
| | [`FLB_OUT_S3`](../../../pipeline/outputs/s3.md) | Enable Amazon S3 output plugin | `On` | | ||
| | [`FLB_OUT_SKYWALKING`](../../../pipeline/outputs/skywalking.md) | Enable Apache Skywalking output plugin | `On` | | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Heading capitalization conflicts with project style guide.
The heading was changed to Title Case ("Scripting and WebAssembly"), but the project's Vale linter expects sentence-case capitalization ("Scripting and webassembly" with only the first letter capitalized). Update the heading to match the project's style guide.
Apply this diff to align with the project's heading style:
📝 Committable suggestion
🧰 Tools
🪛 GitHub Check: runner / vale
[warning] 56-56:
[vale] reported by reviewdog 🐶
[FluentBit.Headings] 'Scripting and WebAssembly' should use sentence-style capitalization.
Raw Output:
{"message": "[FluentBit.Headings] 'Scripting and WebAssembly' should use sentence-style capitalization.", "location": {"path": "development/external-libraries.md", "range": {"start": {"line": 56, "column": 4}}}, "severity": "INFO"}
🤖 Prompt for AI Agents