VictoriaMetrics/app/vmselect/promql
Aliaksandr Valialkin c09472dfd9 app/vmselect/promql: add {topk|bottomk}_{min|max|avg|median} aggregate functions for returning the exact k time series on the given time range
The full list of functions added:
- `topk_min(k, q)` - returns top K time series with the max minimums on the given time range
- `topk_max(k, q)` - returns top K time series with the max maximums on the given time range
- `topk_avg(k, q)` - returns top K time series with the max averages on the given time range
- `topk_median(k, q)` - returns top K time series with the max medians on the given time range
- `bottomk_min(k, q)` - returns bottom K time series with the min minimums on the given time range
- `bottomk_max(k, q)` - returns bottom K time series with the min maximums on the given time range
- `bottomk_avg(k, q)` - returns bottom K time series with the min averages on the given time range
- `bottomk_median(k, q)` - returns bottom K time series with the min medians on the given time range
2019-12-05 19:26:47 +02:00
..
aggr.go app/vmselect/promql: add {topk|bottomk}_{min|max|avg|median} aggregate functions for returning the exact k time series on the given time range 2019-12-05 19:26:47 +02:00
aggr_incremental.go app/vmselect/promql: return NaN from count() over zero time series 2019-07-25 22:02:30 +03:00
aggr_incremental_test.go all: port to FreeBSD on GOARCH=amd64 2019-08-28 01:19:23 +03:00
aggr_test.go all: open-sourcing single-node version 2019-05-23 00:18:06 +03:00
arch.go app/vmselect/promql: use universal approach for determining maxByteSliceLen on 32-bit and 64-bit archs 2019-11-13 20:24:26 +02:00
binary_op.go app/vmselect/promql: binary operation fixes according to Prometheus behaviour 2019-09-13 17:42:52 +03:00
binary_op_test.go all: open-sourcing single-node version 2019-05-23 00:18:06 +03:00
eval.go app/vmselect/promql: adjust memory limits calculations for incremental aggregate functions 2019-11-08 21:21:07 +02:00
exec.go app/vmselect/promql: add histogram aggregate function, which is useful for building heatmaps from multiple time series 2019-11-24 00:04:25 +02:00
exec_test.go app/vmselect/promql: add {topk|bottomk}_{min|max|avg|median} aggregate functions for returning the exact k time series on the given time range 2019-12-05 19:26:47 +02:00
lexer.go app/vmselect/promql: hande comparisons with NaN similar to Prometheus 2019-08-18 00:25:50 +03:00
lexer_test.go app/vmselect/promql: allow escaping identifiers with \ and \xXX 2019-05-31 17:35:17 +03:00
memory_limiter.go app/vmselect/promql: use dynamic limit on memory for concurrent queries 2019-06-12 23:18:44 +03:00
memory_limiter_test.go app/vmselect/promql: use dynamic limit on memory for concurrent queries 2019-06-12 23:18:44 +03:00
parser.go app/vmselect/promql: allow nested parens 2019-11-25 16:13:41 +02:00
parser_test.go app/vmselect/promql: allow nested parens 2019-11-25 16:13:41 +02:00
regexp_cache.go all: add support for GOARCH=386 and fix all the issues related to 32-bit architectures such as GOARCH=arm 2019-10-17 18:23:23 +03:00
rollup.go app/vmselect/promql: estimate per-series scrape interval as 0.6 quantile for the first 100 intervals 2019-12-02 13:42:33 +02:00
rollup_result_cache.go app/vmselect/promql: fix panic on -search.disableCache 2019-08-21 17:11:52 +03:00
rollup_result_cache_test.go app/vmselect/promql: transparently apply prometheus_buckets in histogram_quantile 2019-11-23 11:48:51 +02:00
rollup_test.go vendor: update github.com/VictoriaMetrics/metrics from v1.9.0 to v1.9.1 2019-11-25 15:23:01 +02:00
rollup_timing_test.go all: open-sourcing single-node version 2019-05-23 00:18:06 +03:00
timeseries.go all: remove the remaining mentions of cluster version 2019-11-21 23:18:22 +02:00
timeseries_test.go app/vmselect/promql: store compressed results in the cache 2019-08-14 02:29:45 +03:00
transform.go app/vmselect/promql: remove zero timeseries from prometheus_buckets output 2019-11-25 19:10:23 +02:00