2019-05-22 23:16:55 +02:00
|
|
|
module github.com/VictoriaMetrics/VictoriaMetrics
|
|
|
|
|
|
|
|
require (
|
2021-09-12 14:26:35 +02:00
|
|
|
cloud.google.com/go v0.94.1 // indirect
|
2021-09-01 11:51:42 +02:00
|
|
|
cloud.google.com/go/storage v1.16.1
|
2021-09-15 08:29:14 +02:00
|
|
|
github.com/VictoriaMetrics/fastcache v1.7.0
|
2020-04-29 15:20:23 +02:00
|
|
|
|
|
|
|
// Do not use the original github.com/valyala/fasthttp because of issues
|
|
|
|
// like https://github.com/valyala/fasthttp/commit/996610f021ff45fdc98c2ce7884d5fa4e7f9199b
|
2021-09-15 08:26:09 +02:00
|
|
|
github.com/VictoriaMetrics/fasthttp v1.1.0
|
2021-09-15 08:16:28 +02:00
|
|
|
github.com/VictoriaMetrics/metrics v1.18.0
|
2021-08-27 17:37:18 +02:00
|
|
|
github.com/VictoriaMetrics/metricsql v0.21.0
|
2021-05-01 08:39:26 +02:00
|
|
|
github.com/VividCortex/ewma v1.2.0 // indirect
|
2021-09-15 17:22:59 +02:00
|
|
|
github.com/aws/aws-sdk-go v1.40.43
|
2021-08-25 12:40:55 +02:00
|
|
|
github.com/cespare/xxhash/v2 v2.1.2
|
2021-04-24 00:34:07 +02:00
|
|
|
github.com/cheggaaa/pb/v3 v3.0.8
|
2021-07-26 15:02:39 +02:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
|
2021-05-28 12:18:26 +02:00
|
|
|
github.com/fatih/color v1.12.0 // indirect
|
2021-07-07 15:05:04 +02:00
|
|
|
github.com/go-kit/kit v0.11.0 // indirect
|
2021-08-21 19:15:41 +02:00
|
|
|
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
2021-04-02 21:20:17 +02:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2021-07-07 15:05:04 +02:00
|
|
|
github.com/golang/snappy v0.0.4
|
2021-07-13 13:30:19 +02:00
|
|
|
github.com/influxdata/influxdb v1.9.3
|
2021-09-15 17:22:59 +02:00
|
|
|
github.com/klauspost/compress v1.13.6
|
2021-09-12 14:26:35 +02:00
|
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
2021-05-28 12:18:26 +02:00
|
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
2021-08-13 12:03:03 +02:00
|
|
|
github.com/prometheus/common v0.30.0 // indirect
|
2021-08-21 19:15:41 +02:00
|
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
2021-02-01 00:10:16 +01:00
|
|
|
github.com/prometheus/prometheus v1.8.2-0.20201119142752-3ad25a6dc3d9
|
|
|
|
github.com/urfave/cli/v2 v2.3.0
|
2020-11-24 18:00:55 +01:00
|
|
|
github.com/valyala/fastjson v1.6.3
|
2021-09-15 08:16:28 +02:00
|
|
|
github.com/valyala/fastrand v1.1.0
|
2020-08-13 15:43:55 +02:00
|
|
|
github.com/valyala/fasttemplate v1.2.1
|
2021-08-18 13:57:10 +02:00
|
|
|
github.com/valyala/gozstd v1.12.0
|
2021-09-15 08:16:28 +02:00
|
|
|
github.com/valyala/histogram v1.2.0
|
2021-09-15 08:33:15 +02:00
|
|
|
github.com/valyala/quicktemplate v1.7.0
|
2021-07-26 15:02:39 +02:00
|
|
|
go.uber.org/atomic v1.9.0 // indirect
|
2021-09-15 17:22:59 +02:00
|
|
|
golang.org/x/net v0.0.0-20210913180222-943fd674d43e
|
2021-08-21 19:15:41 +02:00
|
|
|
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
|
2021-09-15 17:22:59 +02:00
|
|
|
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164
|
2021-08-13 12:03:03 +02:00
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2021-09-01 11:52:17 +02:00
|
|
|
google.golang.org/api v0.56.0
|
2021-09-12 14:26:35 +02:00
|
|
|
google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af // indirect
|
2020-12-03 19:16:30 +01:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2019-05-22 23:16:55 +02:00
|
|
|
)
|
|
|
|
|
2021-07-07 16:04:23 +02:00
|
|
|
go 1.16
|