-
- Downloads
add prometheus metrics endpoint
Showing
- cmd/task/main.go 14 additions, 0 deletionscmd/task/main.go
- go.mod 9 additions, 0 deletionsgo.mod
- go.sum 78 additions, 0 deletionsgo.sum
- internal/config/config.go 5 additions, 0 deletionsinternal/config/config.go
- vendor/github.com/beorn7/perks/LICENSE 0 additions, 0 deletionsvendor/github.com/beorn7/perks/LICENSE
- vendor/github.com/beorn7/perks/quantile/exampledata.txt 0 additions, 0 deletionsvendor/github.com/beorn7/perks/quantile/exampledata.txt
- vendor/github.com/beorn7/perks/quantile/stream.go 0 additions, 0 deletionsvendor/github.com/beorn7/perks/quantile/stream.go
- vendor/github.com/cespare/xxhash/v2/LICENSE.txt 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/LICENSE.txt
- vendor/github.com/cespare/xxhash/v2/README.md 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/README.md
- vendor/github.com/cespare/xxhash/v2/xxhash.go 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/xxhash.go
- vendor/github.com/cespare/xxhash/v2/xxhash_amd64.go 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/xxhash_amd64.go
- vendor/github.com/cespare/xxhash/v2/xxhash_amd64.s 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/xxhash_amd64.s
- vendor/github.com/cespare/xxhash/v2/xxhash_other.go 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/xxhash_other.go
- vendor/github.com/cespare/xxhash/v2/xxhash_safe.go 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/xxhash_safe.go
- vendor/github.com/cespare/xxhash/v2/xxhash_unsafe.go 0 additions, 0 deletionsvendor/github.com/cespare/xxhash/v2/xxhash_unsafe.go
- vendor/github.com/golang/protobuf/AUTHORS 0 additions, 0 deletionsvendor/github.com/golang/protobuf/AUTHORS
- vendor/github.com/golang/protobuf/CONTRIBUTORS 0 additions, 0 deletionsvendor/github.com/golang/protobuf/CONTRIBUTORS
- vendor/github.com/golang/protobuf/LICENSE 0 additions, 0 deletionsvendor/github.com/golang/protobuf/LICENSE
- vendor/github.com/golang/protobuf/proto/buffer.go 0 additions, 0 deletionsvendor/github.com/golang/protobuf/proto/buffer.go
- vendor/github.com/golang/protobuf/proto/defaults.go 0 additions, 0 deletionsvendor/github.com/golang/protobuf/proto/defaults.go
... | @@ -7,6 +7,7 @@ require ( | ... | @@ -7,6 +7,7 @@ require ( |
github.com/cenkalti/backoff/v4 v4.1.3 | github.com/cenkalti/backoff/v4 v4.1.3 | ||
github.com/google/uuid v1.3.0 | github.com/google/uuid v1.3.0 | ||
github.com/kelseyhightower/envconfig v1.4.0 | github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/prometheus/client_golang v1.12.2 | |||
github.com/stretchr/testify v1.7.0 | github.com/stretchr/testify v1.7.0 | ||
go.mongodb.org/mongo-driver v1.8.4 | go.mongodb.org/mongo-driver v1.8.4 | ||
go.uber.org/zap v1.21.0 | go.uber.org/zap v1.21.0 | ||
... | @@ -15,10 +16,13 @@ require ( | ... | @@ -15,10 +16,13 @@ require ( |
) | ) | ||
require ( | require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | |||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | |||
github.com/davecgh/go-spew v1.1.1 // indirect | github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect | github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect | ||
github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect | github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | |||
github.com/golang/snappy v0.0.1 // indirect | github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | ||
... | @@ -26,8 +30,12 @@ require ( | ... | @@ -26,8 +30,12 @@ require ( |
github.com/jtolds/gls v4.20.0+incompatible // indirect | github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | |||
github.com/pkg/errors v0.9.1 // indirect | github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | |||
github.com/prometheus/common v0.32.1 // indirect | |||
github.com/prometheus/procfs v0.7.3 // indirect | |||
github.com/sergi/go-diff v1.2.0 // indirect | github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/smartystreets/assertions v1.2.1 // indirect | github.com/smartystreets/assertions v1.2.1 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
... | @@ -43,6 +51,7 @@ require ( | ... | @@ -43,6 +51,7 @@ require ( |
golang.org/x/text v0.3.7 // indirect | golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/tools v0.1.10 // indirect | golang.org/x/tools v0.1.10 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | |||
gopkg.in/yaml.v2 v2.4.0 // indirect | gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) | ) |
This diff is collapsed.
vendor/github.com/beorn7/perks/LICENSE
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/github.com/golang/protobuf/AUTHORS
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
vendor/github.com/golang/protobuf/LICENSE
0 → 100644
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Please register or sign in to comment