File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/prometheus/exporter-toolkit
33go 1.14
44
55require (
6- github.com/go-kit/kit v0.10 .0
6+ github.com/go-kit/log v0.1 .0
77 github.com/pkg/errors v0.9.1
88 github.com/prometheus/common v0.15.0
99 golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9
Original file line number Diff line number Diff line change @@ -60,8 +60,9 @@ github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMo
6060github.com/ghodss/yaml v1.0.0 /go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04 =
6161github.com/go-kit/kit v0.8.0 /go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as =
6262github.com/go-kit/kit v0.9.0 /go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as =
63- github.com/go-kit/kit v0.10.0 h1:dXFJfIHVvUcpSgDOV+Ne6t7jXri8Tfv2uOLHUZ2XNuo =
6463github.com/go-kit/kit v0.10.0 /go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o =
64+ github.com/go-kit/log v0.1.0 h1:DGJh0Sm43HbOeYDNnVZFl8BvcYVvjD5bqYJvp0REbwQ =
65+ github.com/go-kit/log v0.1.0 /go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY =
6566github.com/go-logfmt/logfmt v0.3.0 /go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE =
6667github.com/go-logfmt/logfmt v0.4.0 /go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk =
6768github.com/go-logfmt/logfmt v0.5.0 h1:TrB8swr/68K7m9CcGut2g3UOihhbcbiMAYiuTXdEih4 =
@@ -408,7 +409,6 @@ gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
408409gopkg.in/yaml.v2 v2.2.2 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
409410gopkg.in/yaml.v2 v2.2.4 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
410411gopkg.in/yaml.v2 v2.2.5 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
411- gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU =
412412gopkg.in/yaml.v2 v2.3.0 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
413413gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY =
414414gopkg.in/yaml.v2 v2.4.0 /go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ =
Original file line number Diff line number Diff line change 11// Used in HTTP handlers, any error is handled by the server itself.
22(net/http.ResponseWriter).Write
33// Never check for logger errors.
4- (github.com/go-kit/kit/ log.Logger).Log
4+ (github.com/go-kit/log.Logger).Log
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
2222 "net/http"
2323 "path/filepath"
2424
25- "github.com/go-kit/kit/ log"
26- "github.com/go-kit/kit/ log/level"
25+ "github.com/go-kit/log"
26+ "github.com/go-kit/log/level"
2727 "github.com/pkg/errors"
2828 config_util "github.com/prometheus/common/config"
2929 "gopkg.in/yaml.v2"
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
2020 "net/http"
2121 "sync"
2222
23- "github.com/go-kit/kit/ log"
23+ "github.com/go-kit/log"
2424 "golang.org/x/crypto/bcrypt"
2525)
2626
You can’t perform that action at this time.
0 commit comments