mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
add sentry for error monitoring and performance tracking. Must call the init function to actually turn on the feature. This is expected to be used in the PLG binary and not the enterprise binary.
71 lines
2.8 KiB
Modula-2
71 lines
2.8 KiB
Modula-2
module github.com/molecula/featurebase/v3
|
|
|
|
require (
|
|
github.com/CAFxX/gcnotifier v0.0.0-20220409005548-0153238b886a
|
|
github.com/DataDog/datadog-go v4.8.3+incompatible
|
|
github.com/DataDog/datadog-go/v5 v5.1.0 // indirect
|
|
github.com/HdrHistogram/hdrhistogram-go v1.1.0 // indirect
|
|
github.com/Microsoft/go-winio v0.5.2 // indirect
|
|
github.com/beevik/ntp v0.3.0
|
|
github.com/benbjohnson/immutable v0.3.0
|
|
github.com/buger/jsonparser v1.1.1
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
github.com/cespare/xxhash v1.1.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/felixge/fgprof v0.9.1
|
|
github.com/getsentry/sentry-go v0.13.0
|
|
github.com/go-test/deep v1.0.7
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/google/go-cmp v0.5.7
|
|
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
|
|
github.com/gorilla/handlers v1.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/securecookie v1.1.1
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/hashicorp/go-retryablehttp v0.7.1
|
|
github.com/improbable-eng/grpc-web v0.15.0
|
|
github.com/jonboulle/clockwork v0.3.0 // indirect
|
|
github.com/klauspost/compress v1.15.1 // indirect
|
|
github.com/lib/pq v1.10.5
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/molecula/apophenia v0.0.0-20190827192002-68b7a14a478b
|
|
github.com/opentracing/opentracing-go v1.2.0
|
|
github.com/pelletier/go-toml v1.9.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.11.1
|
|
github.com/prometheus/client_model v0.2.0
|
|
github.com/prometheus/prom2json v1.3.0
|
|
github.com/rakyll/statik v0.1.7
|
|
github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 // indirect
|
|
github.com/rs/cors v1.8.2 // indirect
|
|
github.com/satori/go.uuid v1.2.0
|
|
github.com/shirou/gopsutil/v3 v3.21.9
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.7.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/uber/jaeger-client-go v2.25.0+incompatible
|
|
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect
|
|
github.com/zeebo/blake3 v0.1.1
|
|
go.etcd.io/bbolt v1.3.6
|
|
go.etcd.io/etcd v3.3.27+incompatible
|
|
go.etcd.io/etcd/api/v3 v3.5.4
|
|
go.etcd.io/etcd/client/pkg/v3 v3.5.4
|
|
go.etcd.io/etcd/client/v3 v3.5.4
|
|
go.etcd.io/etcd/server/v3 v3.5.4
|
|
golang.org/x/exp v0.0.0-20201008143054-e3b2a7f2fdc7
|
|
golang.org/x/mod v0.5.1
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
google.golang.org/grpc v1.38.0
|
|
gopkg.in/DataDog/dd-trace-go.v1 v1.38.1
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
modernc.org/mathutil v1.0.0
|
|
modernc.org/strutil v1.0.0
|
|
vitess.io/vitess v3.0.0-rc.3.0.20190602171040-12bfde34629c+incompatible
|
|
)
|
|
|
|
go 1.14
|