forked from Telefonica/prometheus-kafka-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
28 lines (26 loc) · 1.19 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module github.com/Telefonica/prometheus-kafka-adapter
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/confluentinc/confluent-kafka-go v1.3.0
github.com/gin-gonic/contrib v0.0.0-20191209060500-d6e26eeaa607
github.com/gin-gonic/gin v1.6.3
github.com/gogo/protobuf v1.3.1
github.com/golang/snappy v0.0.1
github.com/grpc-ecosystem/grpc-gateway v1.5.0 // indirect
github.com/linkedin/goavro v2.1.0+incompatible
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/prometheus/client_golang v0.8.0
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e
github.com/prometheus/procfs v0.1.3 // indirect
github.com/prometheus/prometheus v2.4.2+incompatible
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/testify v1.6.1
google.golang.org/genproto v0.0.0-20180928223349-c7e5094acea1 // indirect
google.golang.org/grpc v1.15.0 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
gopkg.in/linkedin/goavro.v1 v1.0.5 // indirect
)
go 1.13