Skip to content

Commit fe5a459

Browse files
Update links to address markdown lint issues (#1094)
* Update links to address markdown lint issues * reduce line length * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 8796baf commit fe5a459

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ issue template.
6969

7070
### F5 Contributor License Agreement (CLA)
7171

72-
F5 requires all external contributors to agree to the terms of the F5 CLA (available [here](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md))
72+
F5 requires all external contributors to agree to the terms of the [F5 CLA](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md)
7373
before any of their changes can be incorporated into an F5 Open Source repository.
7474

7575
If you have not yet agreed to the F5 CLA terms and submit a PR to this repository, a bot will prompt you to view and

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Flags:
254254
| `nginxplus_server_zone_processing` | Gauge | Client requests that are currently being processed | `server_zone` |
255255
| `nginxplus_server_zone_requests` | Counter | Total client requests | `server_zone` |
256256
| `nginxplus_server_zone_responses` | Counter | Total responses sent to clients | `code` (the response status code. The values are: `1xx`, `2xx`, `3xx`, `4xx` and `5xx`), `server_zone` |
257-
| `nginxplus_server_zone_responses_codes` | Counter | Total responses sent to clients by code | `code` (the response status code. The possible values are [here](https://www.nginx.com/resources/wiki/extending/api/http/)), `server_zone` |
257+
| `nginxplus_server_zone_responses_codes` | Counter | Total responses sent to clients by code | `code` (the response status code. The [possible values](https://www.nginx.com/resources/wiki/extending/api/http/) are available on the NGINX Wiki), `server_zone` |
258258
| `nginxplus_server_zone_discarded` | Counter | Requests completed without sending a response | `server_zone` |
259259
| `nginxplus_server_zone_received` | Counter | Bytes received from clients | `server_zone` |
260260
| `nginxplus_server_zone_sent` | Counter | Bytes sent to clients | `server_zone` |
@@ -288,7 +288,7 @@ Flags:
288288
| `nginxplus_upstream_server_limit` | Gauge | Limit for connections which corresponds to the max_conns parameter of the upstream server. Zero value means there is no limit | `server`, `upstream` |
289289
| `nginxplus_upstream_server_requests` | Counter | Total client requests | `server`, `upstream` |
290290
| `nginxplus_upstream_server_responses` | Counter | Total responses sent to clients | `code` (the response status code. The values are: `1xx`, `2xx`, `3xx`, `4xx` and `5xx`), `server`, `upstream` |
291-
| `nginxplus_upstream_server_responses_codes` | Counter | Total responses sent to clients by code | `code` (the response status code. The possible values are [here](https://www.nginx.com/resources/wiki/extending/api/http/)), `server`, `upstream` |
291+
| `nginxplus_upstream_server_responses_codes` | Counter | Total responses sent to clients by code | `code` (the response status code. The [possible values](https://www.nginx.com/resources/wiki/extending/api/http/) are available on the NGINX Wiki), `server`, `upstream` |
292292
| `nginxplus_upstream_server_sent` | Counter | Bytes sent to this server | `server`, `upstream` |
293293
| `nginxplus_upstream_server_received` | Counter | Bytes received to this server | `server`, `upstream` |
294294
| `nginxplus_upstream_server_fails` | Counter | Number of unsuccessful attempts to communicate with the server | `server`, `upstream` |
@@ -348,7 +348,7 @@ Flags:
348348
| ----------------------------------------- | ------- | --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
349349
| `nginxplus_location_zone_requests` | Counter | Total client requests | `location_zone` |
350350
| `nginxplus_location_zone_responses` | Counter | Total responses sent to clients | `code` (the response status code. The values are: `1xx`, `2xx`, `3xx`, `4xx` and `5xx`), `location_zone` |
351-
| `nginxplus_location_zone_responses_codes` | Counter | Total responses sent to clients by code | `code` (the response status code. The possible values are [here](https://www.nginx.com/resources/wiki/extending/api/http/)), `location_zone` |
351+
| `nginxplus_location_zone_responses_codes` | Counter | Total responses sent to clients by code | `code` (the response status code. The [possible values](https://www.nginx.com/resources/wiki/extending/api/http/) are available on the NGINX Wiki), `location_zone` |
352352
| `nginxplus_location_zone_discarded` | Counter | Requests completed without sending a response | `location_zone` |
353353
| `nginxplus_location_zone_received` | Counter | Bytes received from clients | `location_zone` |
354354
| `nginxplus_location_zone_sent` | Counter | Bytes sent to clients | `location_zone` |

examples/basic_auth/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ This example shows how to run NGINX Prometheus Exporter with web configuration.
44
configuration `web-config.yml` that enables basic authentication. It is configured to have a single user `alice` with
55
password `password`.
66

7-
The full documentation for the web configuration can be found
8-
[here](https://github.com/prometheus/exporter-toolkit/blob/master/docs/web-configuration.md).
7+
See the full documentation of the
8+
[web configuration](https://github.com/prometheus/exporter-toolkit/blob/master/docs/web-configuration.md) for more details.
99

1010
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1111
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

examples/tls/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ This example shows how to run NGINX Prometheus Exporter with web configuration.
44
configuration `web-config.yml` that enables TLS and specifies the path to the TLS certificate and key files.
55
Additionally, there are two example TLS files `server.crt` and `server.key` that are used in the configuration.
66

7-
The full documentation for the web configuration can be found
8-
[here](https://github.com/prometheus/exporter-toolkit/blob/master/docs/web-configuration.md).
7+
See the full documentation of the
8+
[web configuration](https://github.com/prometheus/exporter-toolkit/blob/master/docs/web-configuration.md) for more details.
99

1010
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1111
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

0 commit comments

Comments
 (0)