summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenyon Ralph <kralph@codeaurora.org>2021-11-17 19:31:21 -0800
committerKenyon Ralph <kralph@codeaurora.org>2021-11-18 20:34:39 -0800
commit1a4e28a5e5aca6eb9ae2cb518e62388700c80d8e (patch)
treec7ea6331b16cceaa35c5876bee157610c8c491c2
parent756d349cb3a16652568aad46b34f2eb9c3d04a36 (diff)
docs/metrics: fix rendering of text in angle brackets
The words inside angle brackets were being interpreted as HTML markup, so were not rendered. Change-Id: Icfa6553635ea437200390ca235328a6036718f40
-rw-r--r--src/main/resources/Documentation/metrics.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/resources/Documentation/metrics.md b/src/main/resources/Documentation/metrics.md
index ef8b150..541e95e 100644
--- a/src/main/resources/Documentation/metrics.md
+++ b/src/main/resources/Documentation/metrics.md
@@ -9,13 +9,13 @@ could potentially be considerably big.
### Project level
-* plugins_replication_latency_slower_than_<threshold>_<destinationName>_<ProjectName> - Time spent pushing <ProjectName> to remote <destinationName> (in ms)
+* `plugins_replication_latency_slower_than_<threshold>_<destinationName>_<ProjectName>` - Time spent pushing `<ProjectName>` to remote `<destinationName>` (in ms)
### Destination level
-* plugins_replication_replication_delay_<destinationName> - Time spent waiting before pushing to remote <destinationName> (in ms)
-* plugins_replication_replication_retries_<destinationName> - Number of retries when pushing to remote <destinationName>
-* plugins_replication_replication_latency_<destinationName> - Time spent pushing to remote <destinationName> (in ms)
+* `plugins_replication_replication_delay_<destinationName>` - Time spent waiting before pushing to remote `<destinationName>` (in ms)
+* `plugins_replication_replication_retries_<destinationName>` - Number of retries when pushing to remote `<destinationName>`
+* `plugins_replication_replication_latency_<destinationName>` - Time spent pushing to remote `<destinationName>` (in ms)
### Example
```
@@ -58,4 +58,4 @@ plugins_replication_latency_slower_than_60_destinationName_projectName{quantile=
plugins_replication_latency_slower_than_60_destinationName_projectName{quantile="0.99",} 278.0
plugins_replication_latency_slower_than_60_destinationName_projectName{quantile="0.999",} 278.0
plugins_replication_latency_slower_than_60_destinationName_projectName 1.0
-``` \ No newline at end of file
+```