Commit 067e169b by Amal Committed by GitHub

Docs: Correcting one of the usage in documentation (#24197)

* Correcting one of the usage in documentation

* Correcting usage of a word

* Correcting usage of a word in docs

* Correcting same word in 2 more occurrences

* Correcting a word in docs

* Correcting a word in docs

* Update docs/sources/variables/advanced-variable-format-options.md

Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>

* Incorporated reviewer's suggestion in other occurrences

Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>
parent 314d442d
...@@ -26,7 +26,7 @@ An alternative syntax (that might be deprecated in the future) is `[[var_name:op ...@@ -26,7 +26,7 @@ An alternative syntax (that might be deprecated in the future) is `[[var_name:op
## CSV ## CSV
Formats multi-value variable as a comma-separated string. Formats variables with multiple values as a comma-separated string.
```bash ```bash
servers = ['test1', 'test2'] servers = ['test1', 'test2']
...@@ -36,7 +36,7 @@ Interpolation result: 'test1,test2' ...@@ -36,7 +36,7 @@ Interpolation result: 'test1,test2'
## Distributed - OpenTSDB ## Distributed - OpenTSDB
Formats multi-value variable in custom format for OpenTSDB. Formats variables with multiple values in custom format for OpenTSDB.
```bash ```bash
servers = ['test1', 'test2'] servers = ['test1', 'test2']
...@@ -56,7 +56,7 @@ Interpolation result: '"test1","test2"' ...@@ -56,7 +56,7 @@ Interpolation result: '"test1","test2"'
## Glob - Graphite ## Glob - Graphite
Formats multi-value variable into a glob (for Graphite queries). Formats variables with multiple values into a glob (for Graphite queries).
```bash ```bash
servers = ['test1', 'test2'] servers = ['test1', 'test2']
...@@ -66,7 +66,7 @@ Interpolation result: '{test1,test2}' ...@@ -66,7 +66,7 @@ Interpolation result: '{test1,test2}'
## JSON ## JSON
Formats multi-value variable as a comma-separated string. Formats variables with multiple values as a comma-separated string.
```bash ```bash
servers = ['test1', 'test2'] servers = ['test1', 'test2']
...@@ -76,7 +76,7 @@ Interpolation result: '["test1", "test2"]' ...@@ -76,7 +76,7 @@ Interpolation result: '["test1", "test2"]'
## Lucene - Elasticsearch ## Lucene - Elasticsearch
Formats multi-value variable in Lucene format for Elasticsearch. Formats variables with multiple values in Lucene format for Elasticsearch.
```bash ```bash
servers = ['test1', 'test2'] servers = ['test1', 'test2']
...@@ -96,7 +96,7 @@ Interpolation result: 'foo%28%29bar%20BAZ%2Ctest2' ...@@ -96,7 +96,7 @@ Interpolation result: 'foo%28%29bar%20BAZ%2Ctest2'
## Pipe ## Pipe
Formats multi-value variable into a pipe-separated string. Formats variables with multiple values into a pipe-separated string.
```bash ```bash
servers = ['test1.', 'test2'] servers = ['test1.', 'test2']
...@@ -116,7 +116,7 @@ Interpolation result: '{test.1,test2}' ...@@ -116,7 +116,7 @@ Interpolation result: '{test.1,test2}'
## Regex ## Regex
Formats multi-value variable into a regex string. Formats variables with multiple values into a regex string.
```bash ```bash
servers = ['test1.', 'test2'] servers = ['test1.', 'test2']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment