mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9930ce1fa9
* feat(vmselect): add support for listing current running queries and canceling specific query * fix(vmselect): change current queries' pid from int64 counter to uuid * feat(vmselect): add auth to internal operations like `/resetRollupResultCache`, `/query/list` and `/query/kill`. add flag `internalAuthKey` for these auth * fix(vmselect): add more info to current queries * review: delete some unnecessary code and use function instead of init * review: returen *queriesMap in newQueriesMap * review: delete unused var in struct queriesMap, add comments to exported functions * review: add return if error occurs * feat(vmselect): truncate query string in current running query list API since the size of query string might be large; use query string's pointer in struct `query` for the same reason; add query info API to get full access of query's info;
35 lines
1.3 KiB
Modula-2
35 lines
1.3 KiB
Modula-2
module github.com/VictoriaMetrics/VictoriaMetrics
|
|
|
|
require (
|
|
cloud.google.com/go v0.60.0 // indirect
|
|
cloud.google.com/go/storage v1.10.0
|
|
github.com/VictoriaMetrics/fastcache v1.5.7
|
|
|
|
// Do not use the original github.com/valyala/fasthttp because of issues
|
|
// like https://github.com/valyala/fasthttp/commit/996610f021ff45fdc98c2ce7884d5fa4e7f9199b
|
|
github.com/VictoriaMetrics/fasthttp v1.0.1
|
|
github.com/VictoriaMetrics/metrics v1.11.3
|
|
github.com/VictoriaMetrics/metricsql v0.2.4
|
|
github.com/aws/aws-sdk-go v1.32.13
|
|
github.com/cespare/xxhash/v2 v2.1.1
|
|
github.com/golang/snappy v0.0.1
|
|
github.com/google/uuid v1.1.1
|
|
github.com/klauspost/compress v1.10.10
|
|
github.com/lithammer/go-jump-consistent-hash v1.0.1
|
|
github.com/valyala/fastjson v1.5.3
|
|
github.com/valyala/fastrand v1.0.0
|
|
github.com/valyala/gozstd v1.7.0
|
|
github.com/valyala/histogram v1.0.1
|
|
github.com/valyala/quicktemplate v1.5.0
|
|
go.opencensus.io v0.22.4 // indirect
|
|
golang.org/x/net v0.0.0-20200625001655-4c5254603344 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae
|
|
golang.org/x/text v0.3.3 // indirect
|
|
golang.org/x/tools v0.0.0-20200630154851-b2d8b0336632 // indirect
|
|
google.golang.org/api v0.28.0
|
|
google.golang.org/grpc v1.30.0 // indirect
|
|
gopkg.in/yaml.v2 v2.3.0
|
|
)
|
|
|
|
go 1.13
|