Skip to content

Commit dc35ae0

Browse files
Clean up some missing markdown in Alloy docs (#1229)
1 parent a0270d8 commit dc35ae0

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

docs/sources/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ cards:
3232
href: ./set-up/migrate/
3333
description: Learn how to migrate to Alloy from Grafana Agent Operator, Prometheus, Promtail, Grafana Agent Static, or Grafana Agent Flow.
3434
- title: Collect OpenTelemetry data
35-
href: ./collect/collect-opentelemetry-data/
35+
href: ./collect/opentelemetry-data/
3636
description: You can configure Alloy to collect OpenTelemetry-compatible data and forward it to any OpenTelemetry-compatible endpoint. Learn how to configure OpenTelemetry data delivery, configure batching, and receive OpenTelemetry data over OTLP.
3737
- title: Collect and forward Prometheus metrics
38-
href: ./collect/collect-prometheus-metrics/
38+
href: ./collect/prometheus-metrics/
3939
description: You can configure Alloy to collect Prometheus metrics and forward them to any Prometheus-compatible database. Learn how to configure metrics delivery and collect metrics from Kubernetes Pods.
4040
- title: Concepts
4141
href: ./get-started/

docs/sources/_index.md.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ cards:
3232
href: ./set-up/migrate/
3333
description: Learn how to migrate to Alloy from Grafana Agent Operator, Prometheus, Promtail, Grafana Agent Static, or Grafana Agent Flow.
3434
- title: Collect OpenTelemetry data
35-
href: ./collect/collect-opentelemetry-data/
35+
href: ./collect/opentelemetry-data/
3636
description: You can configure Alloy to collect OpenTelemetry-compatible data and forward it to any OpenTelemetry-compatible endpoint. Learn how to configure OpenTelemetry data delivery, configure batching, and receive OpenTelemetry data over OTLP.
3737
- title: Collect and forward Prometheus metrics
38-
href: ./collect/collect-prometheus-metrics/
38+
href: ./collect/prometheus-metrics/
3939
description: You can configure Alloy to collect Prometheus metrics and forward them to any Prometheus-compatible database. Learn how to configure metrics delivery and collect metrics from Kubernetes Pods.
4040
- title: Concepts
4141
href: ./get-started/

docs/sources/collect/metamonitoring.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ otelcol.exporter.otlp "default" {
150150
}
151151
```
152152

153-
[prometheus.exporter.self]: ../../reference/components/prometheus.exporter.self
154-
[prometheus.scrape]: ../../reference/components/prometheus.scrape
155-
[logging]: ../../reference/config-blocks/logging
156-
[tracing]: ../../reference/config-blocks/tracing
157-
[Components]: ../../get-started/components
153+
[prometheus.exporter.self]: ../../reference/components/prometheus.exporter.self/
154+
[prometheus.scrape]: ../../reference/components/prometheus.scrape/
155+
[logging]: ../../reference/config-blocks/logging/
156+
[tracing]: ../../reference/config-blocks/tracing/
157+
[Components]: ../../get-started/components/

docs/sources/tutorials/send-metrics-to-prometheus.md

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ prometheus.scrape "scrape_metrics" {
3939
forward_to = [prometheus.relabel.filter_metrics.receiver]
4040
scrape_interval = "10s"
4141
}
42+
```
43+
4244
This configuration defines a Prometheus exporter for a local system from which the metrics will be collected.
4345

4446
It also creates a [`prometheus.scrape`][prometheus.scrape] component named `scrape_metrics` which does the following:
@@ -54,6 +56,7 @@ Filtering non-essential metrics before sending them to a data source can help yo
5456
The following example demonstrates filtering out or dropping metrics before sending them to Prometheus.
5557

5658
Paste this component next in your configuration file:
59+
5760
```alloy
5861
prometheus.relabel "filter_metrics" {
5962
rule {
@@ -64,6 +67,7 @@ prometheus.relabel "filter_metrics" {
6467
6568
forward_to = [prometheus.remote_write.metrics_service.receiver]
6669
}
70+
```
6771

6872
1. `prometheus.relabel` is a component most commonly used to filter Prometheus metrics or standardize the label set passed to one or more downstream receivers.
6973
1. In this example, you create a `prometheus.relabel` component named “filter_metrics”.
@@ -90,6 +94,8 @@ prometheus.remote_write "metrics_service" {
9094
// }
9195
}
9296
}
97+
```
98+
9399
This last component creates a [prometheus.remote_write][prometheus.remote_write] component named `metrics_service` that points to `http://localhost:9090/api/v1/write`.
94100

95101
This completes the simple configuration pipeline.
@@ -121,6 +127,7 @@ sudo cp config.alloy /etc/alloy/config.alloy
121127
{{< /code >}}
122128

123129
Finally, call the reload endpoint to notify {{< param "PRODUCT_NAME" >}} to the configuration change without the need for restarting the system service.
130+
124131
```bash
125132
curl -X POST http://localhost:12345/-/reload
126133
```

0 commit comments

Comments
 (0)