Skip to content

Commit eb4ea07

Browse files
[Docs] Fix broken links
1 parent bf33aab commit eb4ea07

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/en/interfaces/prometheus.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ClickHouse can expose its own metrics for scraping from Prometheus:
2525
</prometheus>
2626

2727
Section `<prometheus.handlers>` can be used to make more extended handlers.
28-
This section is similar to [<http_handlers>](http.md) but works for prometheus protocols:
28+
This section is similar to [<http_handlers>](/en/interfaces/http) but works for prometheus protocols:
2929

3030
```xml
3131
<prometheus>
@@ -51,11 +51,11 @@ Settings:
5151
|---|---|---|---|
5252
| `port` | none | Port for serving the exposing metrics protocol. |
5353
| `endpoint` | `/metrics` | HTTP endpoint for scraping metrics by prometheus server. Starts with `/`. Should not be used with the `<handlers>` section. |
54-
| `url` / `headers` / `method` | none | Filters used to find a matching handler for a request. Similar to the fields with the same names in the [<http_handlers>](http.md) section. |
55-
| `metrics` | true | Expose metrics from the [system.metrics](../operations/system-tables/metrics.md) table. |
56-
| `asynchronous_metrics` | true | Expose current metrics values from the [system.asynchronous_metrics](../operations/system-tables/asynchronous_metrics.md) table. |
57-
| `events` | true | Expose metrics from the [system.events](../operations/system-tables/events.md) table. |
58-
| `errors` | true | Expose the number of errors by error codes occurred since the last server restart. This information could be obtained from the [system.errors](../operations/system-tables/errors.md) as well. |
54+
| `url` / `headers` / `method` | none | Filters used to find a matching handler for a request. Similar to the fields with the same names in the [<http_handlers>](/en/interfaces/http) section. |
55+
| `metrics` | true | Expose metrics from the [system.metrics](/en/operations/system-tables/metrics) table. |
56+
| `asynchronous_metrics` | true | Expose current metrics values from the [system.asynchronous_metrics](/en/operations/system-tables/asynchronous_metrics) table. |
57+
| `events` | true | Expose metrics from the [system.events](/en/operations/system-tables/events) table. |
58+
| `errors` | true | Expose the number of errors by error codes occurred since the last server restart. This information could be obtained from the [system.errors](/en/operations/system-tables/errors) as well. |
5959

6060
Check (replace `127.0.0.1` with the IP addr or hostname of your ClickHouse server):
6161
```bash
@@ -65,7 +65,7 @@ curl 127.0.0.1:9363/metrics
6565
## Remote-write protocol {#remote-write}
6666

6767
ClickHouse supports the [remote-write](https://prometheus.io/docs/specs/remote_write_spec/) protocol.
68-
Data are received by this protocol and written to a [TimeSeries](../engines/table-engines/integrations/time-series.md) table
68+
Data are received by this protocol and written to a [TimeSeries](/en/engines/table-engines/special/time_series) table
6969
(which should be created beforehand).
7070

7171
```xml
@@ -89,14 +89,14 @@ Settings:
8989
| Name | Default | Description |
9090
|---|---|---|---|
9191
| `port` | none | Port for serving the `remote-write` protocol. |
92-
| `url` / `headers` / `method` | none | Filters used to find a matching handler for a request. Similar to the fields with the same names in the [<http_handlers>](http.md) section. |
93-
| `table` | none | The name of a [TimeSeries](../engines/table-engines/integrations/time-series.md) table to write data received by the `remote-write` protocol. This name can optionally contain the name of a database too. |
92+
| `url` / `headers` / `method` | none | Filters used to find a matching handler for a request. Similar to the fields with the same names in the [<http_handlers>](/en/interfaces/http) section. |
93+
| `table` | none | The name of a [TimeSeries](/en/engines/table-engines/special/time_series) table to write data received by the `remote-write` protocol. This name can optionally contain the name of a database too. |
9494
| `database` | none | The name of a database where the table specified in the `table` setting is located if it's not specified in the `table` setting. |
9595

9696
## Remote-read protocol {#remote-read}
9797

9898
ClickHouse supports the [remote-read](https://prometheus.io/docs/prometheus/latest/querying/remote_read_api/) protocol.
99-
Data are read from a [TimeSeries](../engines/table-engines/integrations/time-series.md) table and sent via this protocol.
99+
Data are read from a [TimeSeries](/en/engines/table-engines/special/time_series) table and sent via this protocol.
100100

101101
```xml
102102
<prometheus>
@@ -119,8 +119,8 @@ Settings:
119119
| Name | Default | Description |
120120
|---|---|---|---|
121121
| `port` | none | Port for serving the `remote-read` protocol. |
122-
| `url` / `headers` / `method` | none | Filters used to find a matching handler for a request. Similar to the fields with the same names in the [<http_handlers>](http.md) section. |
123-
| `table` | none | The name of a [TimeSeries](../engines/table-engines/integrations/time-series.md) table to read data to send by the `remote-read` protocol. This name can optionally contain the name of a database too. |
122+
| `url` / `headers` / `method` | none | Filters used to find a matching handler for a request. Similar to the fields with the same names in the [<http_handlers>](/en/interfaces/http) section. |
123+
| `table` | none | The name of a [TimeSeries](/en/engines/table-engines/special/time_series) table to read data to send by the `remote-read` protocol. This name can optionally contain the name of a database too. |
124124
| `database` | none | The name of a database where the table specified in the `table` setting is located if it's not specified in the `table` setting. |
125125

126126
## Configuration for multiple protocols {#multiple-protocols}

0 commit comments

Comments
 (0)