mirror of https://github.com/grafana/grafana.git
Doc: Filter by value update (#111881)
doc(transformation): filter by value
This commit is contained in:
parent
2f2289f226
commit
04e9ac0742
|
@ -452,24 +452,28 @@ This transformation is very useful if your data source does not natively filter
|
|||
|
||||
The available conditions for all fields are:
|
||||
|
||||
- **Regex** - Match a regex expression.
|
||||
- **Is Null** - Match if the value is null.
|
||||
- **Is Not Null** - Match if the value is not null.
|
||||
- **Equal** - Match if the value is equal to the specified value.
|
||||
- **Different** - Match if the value is different than the specified value.
|
||||
- **Not Equal** - Match if the value is not equal to the specified value.
|
||||
- **Regex** - Match a regex expression.
|
||||
|
||||
The available conditions for string fields are:
|
||||
|
||||
- **Contains substring** - Match if the value contains the specified substring (case insensitive).
|
||||
- **Does not contain substring** - Match if the value doesn't contain the specified substring (case insensitive).
|
||||
|
||||
The available conditions for number and time fields are:
|
||||
The available conditions for number fields are:
|
||||
|
||||
- **Greater** - Match if the value is greater than the specified value.
|
||||
- **Lower** - Match if the value is lower than the specified value.
|
||||
- **Greater or equal** - Match if the value is greater or equal.
|
||||
- **Lower or equal** - Match if the value is lower or equal.
|
||||
- **Range** - Match a range between a specified minimum and maximum, min and max included. A time field will pre-populate with variables to filter by selected time.
|
||||
- **In between** - Match a range between a specified minimum and maximum, min and max included.
|
||||
|
||||
The available conditions for time fields are:
|
||||
|
||||
- **In between** - Match a range between a specified minimum and maximum. The min and max values will pre-populate with variables to filter by selected time.
|
||||
|
||||
Consider the following dataset:
|
||||
|
||||
|
|
|
@ -369,24 +369,28 @@ This transformation is very useful if your data source does not natively filter
|
|||
|
||||
The available conditions for all fields are:
|
||||
|
||||
- **Regex** - Match a regex expression.
|
||||
- **Is Null** - Match if the value is null.
|
||||
- **Is Not Null** - Match if the value is not null.
|
||||
- **Equal** - Match if the value is equal to the specified value.
|
||||
- **Different** - Match if the value is different than the specified value.
|
||||
- **Not Equal** - Match if the value is not equal to the specified value.
|
||||
- **Regex** - Match a regex expression.
|
||||
|
||||
The available conditions for string fields are:
|
||||
|
||||
- **Contains substring** - Match if the value contains the specified substring (case insensitive).
|
||||
- **Does not contain substring** - Match if the value doesn't contain the specified substring (case insensitive).
|
||||
|
||||
The available conditions for number and time fields are:
|
||||
The available conditions for number fields are:
|
||||
|
||||
- **Greater** - Match if the value is greater than the specified value.
|
||||
- **Lower** - Match if the value is lower than the specified value.
|
||||
- **Greater or equal** - Match if the value is greater or equal.
|
||||
- **Lower or equal** - Match if the value is lower or equal.
|
||||
- **Range** - Match a range between a specified minimum and maximum, min and max included. A time field will pre-populate with variables to filter by selected time.
|
||||
- **In between** - Match a range between a specified minimum and maximum, min and max included.
|
||||
|
||||
The available conditions for time fields are:
|
||||
|
||||
- **In between** - Match a range between a specified minimum and maximum. The min and max values will pre-populate with variables to filter by selected time.
|
||||
|
||||
Consider the following dataset:
|
||||
|
||||
|
|
Loading…
Reference in New Issue