diff --git a/tools/pika_exporter/Makefile b/tools/pika_exporter/Makefile index 2417feaa6..a67346dbe 100644 --- a/tools/pika_exporter/Makefile +++ b/tools/pika_exporter/Makefile @@ -66,6 +66,7 @@ build: deps deps: generateVer @mkdir -p bin + @go mod tidy generateVer: @echo "$$GENERATE_VERSION_CODE" | bash diff --git a/tools/pika_exporter/go.mod b/tools/pika_exporter/go.mod index ee63b7364..613e350da 100644 --- a/tools/pika_exporter/go.mod +++ b/tools/pika_exporter/go.mod @@ -8,16 +8,20 @@ require ( github.com/pelletier/go-toml v1.9.5 github.com/prometheus/client_golang v1.14.0 github.com/sirupsen/logrus v1.9.0 + github.com/stretchr/testify v1.7.0 ) 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/golang/protobuf v1.5.2 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_model v0.3.0 // indirect github.com/prometheus/common v0.37.0 // indirect github.com/prometheus/procfs v0.8.0 // indirect - golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect + golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect google.golang.org/protobuf v1.28.1 // indirect + gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect )