mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 03:11:01 -06:00
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>
This commit is contained in:
parent
314d442dc7
commit
067e169b93
@ -26,7 +26,7 @@ An alternative syntax (that might be deprecated in the future) is `[[var_name:op
|
||||
|
||||
## CSV
|
||||
|
||||
Formats multi-value variable as a comma-separated string.
|
||||
Formats variables with multiple values as a comma-separated string.
|
||||
|
||||
```bash
|
||||
servers = ['test1', 'test2']
|
||||
@ -36,7 +36,7 @@ Interpolation result: 'test1,test2'
|
||||
|
||||
## Distributed - OpenTSDB
|
||||
|
||||
Formats multi-value variable in custom format for OpenTSDB.
|
||||
Formats variables with multiple values in custom format for OpenTSDB.
|
||||
|
||||
```bash
|
||||
servers = ['test1', 'test2']
|
||||
@ -56,7 +56,7 @@ Interpolation result: '"test1","test2"'
|
||||
|
||||
## Glob - Graphite
|
||||
|
||||
Formats multi-value variable into a glob (for Graphite queries).
|
||||
Formats variables with multiple values into a glob (for Graphite queries).
|
||||
|
||||
```bash
|
||||
servers = ['test1', 'test2']
|
||||
@ -66,7 +66,7 @@ Interpolation result: '{test1,test2}'
|
||||
|
||||
## JSON
|
||||
|
||||
Formats multi-value variable as a comma-separated string.
|
||||
Formats variables with multiple values as a comma-separated string.
|
||||
|
||||
```bash
|
||||
servers = ['test1', 'test2']
|
||||
@ -76,7 +76,7 @@ Interpolation result: '["test1", "test2"]'
|
||||
|
||||
## Lucene - Elasticsearch
|
||||
|
||||
Formats multi-value variable in Lucene format for Elasticsearch.
|
||||
Formats variables with multiple values in Lucene format for Elasticsearch.
|
||||
|
||||
```bash
|
||||
servers = ['test1', 'test2']
|
||||
@ -96,7 +96,7 @@ Interpolation result: 'foo%28%29bar%20BAZ%2Ctest2'
|
||||
|
||||
## Pipe
|
||||
|
||||
Formats multi-value variable into a pipe-separated string.
|
||||
Formats variables with multiple values into a pipe-separated string.
|
||||
|
||||
```bash
|
||||
servers = ['test1.', 'test2']
|
||||
@ -116,7 +116,7 @@ Interpolation result: '{test.1,test2}'
|
||||
|
||||
## Regex
|
||||
|
||||
Formats multi-value variable into a regex string.
|
||||
Formats variables with multiple values into a regex string.
|
||||
|
||||
```bash
|
||||
servers = ['test1.', 'test2']
|
||||
|
Loading…
Reference in New Issue
Block a user