Add more semantic markup (#6744)

Add more semantic markup.
This commit is contained in:
Felix Fontein 2023-06-20 08:14:02 +02:00 committed by GitHub
parent ffb9b6ff96
commit 13e9e4b196
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
143 changed files with 346 additions and 348 deletions

View file

@ -14,8 +14,8 @@ version_added: 2.1.0
description:
- The C(statsd) module sends metrics to StatsD.
- For more information, see U(https://statsd-metrics.readthedocs.io/en/latest/).
- Supported metric types are C(counter) and C(gauge).
Currently unupported metric types are C(timer), C(set), and C(gaugedelta).
- Supported metric types are V(counter) and V(gauge).
Currently unupported metric types are V(timer), V(set), and V(gaugedelta).
author: "Mark Mercado (@mamercad)"
requirements:
- statsd
@ -30,7 +30,7 @@ options:
state:
type: str
description:
- State of the check, only C(present) makes sense.
- State of the check, only V(present) makes sense.
choices: ["present"]
default: present
host:
@ -42,7 +42,7 @@ options:
type: int
default: 8125
description:
- The port on C(host) which StatsD is listening on.
- The port on O(host) which StatsD is listening on.
protocol:
type: str
default: udp
@ -53,7 +53,7 @@ options:
type: float
default: 1.0
description:
- Sender timeout, only applicable if C(protocol) is C(tcp).
- Sender timeout, only applicable if O(protocol) is V(tcp).
metric:
type: str
required: true
@ -79,7 +79,7 @@ options:
type: bool
default: false
description:
- If the metric is of type C(gauge), change the value by C(delta).
- If the metric is of type V(gauge), change the value by O(delta).
'''
EXAMPLES = '''