Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/bmatcuk/doublestar/v4 v4.10.0
github.com/bradleyfalzon/ghinstallation/v2 v2.17.0
github.com/briandowns/spinner v1.23.2
github.com/cactus/go-statsd-client/v5 v5.1.0
github.com/cactus/go-statsd-client/v6 v6.0.0
github.com/drmaxgit/go-azuredevops v0.13.2
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible
github.com/go-playground/validator/v10 v10.30.2
Expand Down Expand Up @@ -77,6 +77,7 @@ require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/cactus/go-statsd-client/v5 v5.0.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cloudflare/circl v1.6.3 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
Expand Down
6 changes: 4 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,10 @@ github.com/bsm/ginkgo/v2 v2.12.0/go.mod h1:SwYbGRRDovPVboqFv0tPTcG1sN61LM1Z4ARdb
github.com/bsm/gomega v1.27.10 h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA=
github.com/bsm/gomega v1.27.10/go.mod h1:JyEr/xRbxbtgWNi8tIEVPUYZ5Dzef52k01W3YH0H+O0=
github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
github.com/cactus/go-statsd-client/v5 v5.1.0 h1:sbbdfIl9PgisjEoXzvXI1lwUKWElngsjJKaZeC021P4=
github.com/cactus/go-statsd-client/v5 v5.1.0/go.mod h1:COEvJ1E+/E2L4q6QE5CkjWPi4eeDw9maJBMIuMPBZbY=
github.com/cactus/go-statsd-client/v5 v5.0.0 h1:KqvIQtc9qt34uq+nu4nd1PwingWfBt/IISgtUQ2nSJk=
github.com/cactus/go-statsd-client/v5 v5.0.0/go.mod h1:COEvJ1E+/E2L4q6QE5CkjWPi4eeDw9maJBMIuMPBZbY=
github.com/cactus/go-statsd-client/v6 v6.0.0 h1:Cua85wGzgbkNTKNGZ2fLU+Tc+yUaDhlxcCI9SvuPSRw=
github.com/cactus/go-statsd-client/v6 v6.0.0/go.mod h1:rB9hA96R/roluLuuNFTdfnzs5XTUkMxRHgNDqfgTVGY=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
Expand Down
2 changes: 1 addition & 1 deletion server/metrics/scope.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"strings"
"time"

"github.com/cactus/go-statsd-client/v5/statsd"
"github.com/cactus/go-statsd-client/v6/statsd"
"github.com/runatlantis/atlantis/server/core/config/valid"
"github.com/runatlantis/atlantis/server/logging"
tally "github.com/uber-go/tally/v4"
Expand Down Expand Up @@ -74,5 +74,5 @@
return nil, fmt.Errorf("initializing statsd client: %w", err)
}

return tallystatsd.NewReporter(client, tallystatsd.Options{}), nil

Check failure on line 77 in server/metrics/scope.go

View workflow job for this annotation

GitHub Actions / e2e-gitlab

cannot use client (variable of interface type "github.com/cactus/go-statsd-client/v6/statsd".Statter) as "github.com/cactus/go-statsd-client/v5/statsd".Statter value in argument to tallystatsd.NewReporter: "github.com/cactus/go-statsd-client/v6/statsd".Statter does not implement "github.com/cactus/go-statsd-client/v5/statsd".Statter (wrong type for method Dec)

Check failure on line 77 in server/metrics/scope.go

View workflow job for this annotation

GitHub Actions / e2e-github

cannot use client (variable of interface type "github.com/cactus/go-statsd-client/v6/statsd".Statter) as "github.com/cactus/go-statsd-client/v5/statsd".Statter value in argument to tallystatsd.NewReporter: "github.com/cactus/go-statsd-client/v6/statsd".Statter does not implement "github.com/cactus/go-statsd-client/v5/statsd".Statter (wrong type for method Dec)

Check failure on line 77 in server/metrics/scope.go

View workflow job for this annotation

GitHub Actions / Tests

cannot use client (variable of interface type "github.com/cactus/go-statsd-client/v6/statsd".Statter) as "github.com/cactus/go-statsd-client/v5/statsd".Statter value in argument to tallystatsd.NewReporter: "github.com/cactus/go-statsd-client/v6/statsd".Statter does not implement "github.com/cactus/go-statsd-client/v5/statsd".Statter (wrong type for method Dec)

Check failure on line 77 in server/metrics/scope.go

View workflow job for this annotation

GitHub Actions / Linting

cannot use client (variable of interface type "github.com/cactus/go-statsd-client/v6/statsd".Statter) as "github.com/cactus/go-statsd-client/v5/statsd".Statter value in argument to tallystatsd.NewReporter: "github.com/cactus/go-statsd-client/v6/statsd".Statter does not implement "github.com/cactus/go-statsd-client/v5/statsd".Statter (wrong type for method Dec)
}
Loading