mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
minor wording updates
Signed-off-by: schou <pschou@users.noreply.github.com>
This commit is contained in:
parent
9621f6d549
commit
71712183ac
|
@ -5,24 +5,33 @@ sort_rank: 10
|
||||||
|
|
||||||
# Disabled Features
|
# Disabled Features
|
||||||
|
|
||||||
Here is a list of features that are disabled by default since they are breaking changes or are considered experimental.
|
These features are disabled by default since they are breaking changes or are
|
||||||
Their behaviour can change in future releases which will be communicated via the [release changelog](https://github.com/prometheus/prometheus/blob/master/CHANGELOG.md).
|
considered experimental. As their behavior may change in future releases,
|
||||||
|
all feature changes are communicated via the [release
|
||||||
|
changelog](https://github.com/prometheus/prometheus/blob/master/CHANGELOG.md).
|
||||||
|
|
||||||
You can enable them using the `--enable-feature` flag with a comma separated list of features.
|
One can enable one or more features using the `--enable-feature` flag with a
|
||||||
They may be enabled by default in future versions.
|
single feature or a comma-separated list of features. In future releases,
|
||||||
|
features may be enabled by default.
|
||||||
|
|
||||||
## `@` Modifier in PromQL
|
## `@` Modifier in PromQL
|
||||||
|
|
||||||
`--enable-feature=promql-at-modifier`
|
`--enable-feature=promql-at-modifier`
|
||||||
|
|
||||||
The `@` modifier lets you specify the evaluation time for instant vector selectors,
|
The `@` modifier lets one specify the evaluation time for instant vector
|
||||||
range vector selectors, and subqueries. More details can be found [here](querying/basics.md#modifier).
|
selectors, range vector selectors, and subqueries. More details can be found
|
||||||
|
[here](querying/basics.md#-modifier).
|
||||||
|
|
||||||
## Negative offset in PromQL
|
## Negative offset in PromQL
|
||||||
|
|
||||||
`--enable-feature=promql-negative-offset`
|
`--enable-feature=promql-negative-offset`
|
||||||
|
|
||||||
In contrast to the positive offset modifier, the negative offset modifier lets one shift a vector into the past. An example in which one may want to use a negative offset is: when reviewing past data and making temporal comparisons with more recent data. More details can be found [here](querying/basics.md#offset-modifier).
|
In contrast to the positive offset modifier, the negative offset modifier lets
|
||||||
|
one shift a vector into the past. An example in which one may want to use a
|
||||||
|
negative offset is reviewing past data and making temporal comparisons with
|
||||||
|
more recent data.
|
||||||
|
|
||||||
|
More details can be found [here](querying/basics.md#offset-modifier).
|
||||||
|
|
||||||
## Remote Write Receiver
|
## Remote Write Receiver
|
||||||
|
|
||||||
|
|
|
@ -209,11 +209,10 @@ can be specified:
|
||||||
|
|
||||||
rate(http_requests_total[5m] offset -1w)
|
rate(http_requests_total[5m] offset -1w)
|
||||||
|
|
||||||
This negative offset is disabled by default since it breaks the invariant
|
This negative offset has been disabled by default since it breaks the invariant
|
||||||
that PromQL does not look ahead of the evaluation time for samples. This
|
that PromQL does not look ahead of the evaluation time for samples. This feature
|
||||||
feature is enabled by setting `--enable-feature=promql-negative-offset`
|
is enabled by setting `--enable-feature=promql-negative-offset` flag. See
|
||||||
flag. See [disabled features](../disabled_features.md) for more details
|
[disabled features](../disabled_features.md) for more details about this flag.
|
||||||
about this flag.
|
|
||||||
|
|
||||||
### @ modifier
|
### @ modifier
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue