mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-18 14:40:26 +01:00
docs: use global dedup flag in vmagent's FlexibleDeduplication docs
Current doc is using per-url deduplication, and users might use this example when they have more than 1 remoteWrite URL. Which would result into extra resource usage. Changing the example to use global dedup, as it makes more sense. Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
parent
b4bd1cf643
commit
39b3e73f55
@ -267,16 +267,17 @@ There is also support for multitenant writes. See [these docs](#multitenancy).
|
|||||||
for the collected samples. Examples:
|
for the collected samples. Examples:
|
||||||
|
|
||||||
- The following command instructs `vmagent` to send only the last sample per each seen [time series](https://docs.victoriametrics.com/keyconcepts/#time-series) per every 60 seconds:
|
- The following command instructs `vmagent` to send only the last sample per each seen [time series](https://docs.victoriametrics.com/keyconcepts/#time-series) per every 60 seconds:
|
||||||
```
|
```sh
|
||||||
./vmagent -remoteWrite.url=http://remote-storage/api/v1/write -remoteWrite.streamAggr.dedupInterval=60s
|
./vmagent -remoteWrite.url=http://remote-storage/api/v1/write -streamAggr.dedupInterval=60s
|
||||||
```
|
```
|
||||||
|
|
||||||
- The following command instructs `vmagent` to merge [time series](https://docs.victoriametrics.com/keyconcepts/#time-series) with different `replica` label values
|
- The following command instructs `vmagent` to merge [time series](https://docs.victoriametrics.com/keyconcepts/#time-series) with different `replica` label values
|
||||||
and then to send only the last sample per each merged series per ever 60 seconds:
|
and then to send only the last sample per each merged series per every 60 seconds:
|
||||||
```
|
```sh
|
||||||
./vmagent -remoteWrite=http://remote-storage/api/v1/write -streamAggr.dropInputLabels=replica -remoteWrite.streamAggr.dedupInterval=60s
|
./vmagent -remoteWrite=http://remote-storage/api/v1/write -streamAggr.dropInputLabels=replica -streamAggr.dedupInterval=60s
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## SRV urls
|
## SRV urls
|
||||||
|
|
||||||
If `vmagent` encounters urls with `srv+` prefix in hostname (such as `http://srv+some-addr/some/path`), then it resolves `some-addr` [DNS SRV](https://en.wikipedia.org/wiki/SRV_record)
|
If `vmagent` encounters urls with `srv+` prefix in hostname (such as `http://srv+some-addr/some/path`), then it resolves `some-addr` [DNS SRV](https://en.wikipedia.org/wiki/SRV_record)
|
||||||
|
Loading…
Reference in New Issue
Block a user