Aliaksandr Valialkin

Results 624 comments of Aliaksandr Valialkin

FYI, this pull request has been included in [v0.29.0-victorialogs](https://docs.victoriametrics.com/victorialogs/changelog/).

Thanks for the feature request. Unfortunately it may be hard to implement due to the following reasons: * VictoriaMetrics supports [many other data ingestion protocols](https://victoriametrics.github.io/#how-to-import-time-series-data), which have no such concepts...

FYI, single-node VictoriaMetrics and `vmagent` exposes `/api/v1/targets` page starting from [v1.45.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases).

@F1ko , thanks for filing the feature request! Native histograms in Prometheus look promising. Let's wait until they are stabilized and become widely used and then think on how to...

More than two years passed since the introduction of native histograms in Prometheus, and they are [still experimental](https://prometheus.io/docs/specs/native_histograms/): > Native histograms were introduced as an experimental feature in November 2022....

The `-replay.timeTo` command-line flag is optional starting from [vmalert v1.102.0](https://docs.victoriametrics.com/changelog/). Closing the feature request as completed.

> The other downside to that method is that if you made a mistake and "deleted" the wrong timestamp, or later discovered a correct value for the deleted sample, it...

The commit 406822a16cb7c5b60c3d46ee3eb52f92d9c00306 adds `range_trim_outliers(k, q)` function, which can be used for dropping outlier points on the graph if they are located farther than `k*range_mad(q)` from `range_median(q)`, where `range_mad(q)` is...

The commit c86f1f1d1b767a9c32e07c0712f60f0d51bf5d3c also adds `range_trim_zscore(z, q)` function, which can be used for dropping outliers if they are located farther than `z*range_sddev(q)` from `range_avg(q)`, where `z` is the desired [z-score](https://en.wikipedia.org/wiki/Standard_score)...

FYI, the [range_trim_outliers](https://docs.victoriametrics.com/MetricsQL.html#range_trim_outliers) and [range_trim_zscore](https://docs.victoriametrics.com/MetricsQL.html#range_trim_zscore) functions are available in VictoriaMetrics [v1.88.0](https://docs.victoriametrics.com/CHANGELOG.html).