2021-01-20 02:57:39 -08:00
---
title: Disabled Features
sort_rank: 10
---
# Disabled Features
2021-02-21 23:39:03 -08:00
These features are disabled by default since they are breaking changes or are
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).
2021-01-20 02:57:39 -08:00
2021-02-21 23:39:03 -08:00
One can enable one or more features using the `--enable-feature` flag with a
single feature or a comma-separated list of features. In future releases,
features may be enabled by default.
2021-01-20 02:57:39 -08:00
## `@` Modifier in PromQL
`--enable-feature=promql-at-modifier`
2021-02-21 23:39:03 -08:00
The `@` modifier lets one specify the evaluation time for instant vector
selectors, range vector selectors, and subqueries. More details can be found
[here ](querying/basics.md#-modifier ).
2021-01-30 03:04:48 -08:00
2021-02-21 10:03:58 -08:00
## Negative offset in PromQL
`--enable-feature=promql-negative-offset`
2021-02-21 23:39:03 -08:00
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 ).
2021-02-21 10:03:58 -08:00
2021-01-30 03:04:48 -08:00
## Remote Write Receiver
`--enable-feature=remote-write-receiver`
The remote write receiver allows Prometheus to accept remote write requests from other Prometheus servers. More details can be found [here ](storage.md#overview ).
2021-02-09 08:03:16 -08:00