Skip to content

Commit

Permalink
Update dependencies and drop large go-kit update
Browse files Browse the repository at this point in the history
Pulling in the same changes as done in
prometheus/common#255

Signed-off-by: John Howard <howardjohn@google.com>
  • Loading branch information
howardjohn committed Jun 3, 2021
1 parent 1a86938 commit c5113b7
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 297 deletions.
2 changes: 1 addition & 1 deletion bridge_test.go
Expand Up @@ -20,7 +20,7 @@ import (
"testing"
"time"

"github.com/go-kit/kit/log"
"github.com/go-kit/log"
"github.com/prometheus/client_golang/prometheus"
dto "github.com/prometheus/client_model/go"

Expand Down
2 changes: 1 addition & 1 deletion exporter_benchmark_test.go
Expand Up @@ -17,7 +17,7 @@ import (
"fmt"
"testing"

"github.com/go-kit/kit/log"
"github.com/go-kit/log"

"github.com/prometheus/client_golang/prometheus"

Expand Down
6 changes: 3 additions & 3 deletions go.mod
@@ -1,11 +1,11 @@
module github.com/prometheus/statsd_exporter

require (
github.com/go-kit/kit v0.10.0
github.com/go-kit/log v0.1.0
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/client_golang v1.10.1-0.20210603120351-253906201bda
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.19.0
github.com/prometheus/common v0.26.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v2 v2.4.0
)
Expand Down
299 changes: 18 additions & 281 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion line_benchmark_test.go
Expand Up @@ -16,7 +16,7 @@ package main
import (
"testing"

"github.com/go-kit/kit/log"
"github.com/go-kit/log"

"github.com/prometheus/statsd_exporter/pkg/line"
)
Expand Down
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -24,8 +24,8 @@ import (
"strconv"
"syscall"

"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/promlog"
Expand Down
4 changes: 2 additions & 2 deletions pkg/exporter/exporter.go
Expand Up @@ -17,8 +17,8 @@ import (
"os"
"time"

"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/prometheus/client_golang/prometheus"

"github.com/prometheus/statsd_exporter/pkg/clock"
Expand Down
2 changes: 1 addition & 1 deletion pkg/exporter/exporter_test.go
Expand Up @@ -19,7 +19,7 @@ import (
"testing"
"time"

"github.com/go-kit/kit/log"
"github.com/go-kit/log"
"github.com/prometheus/client_golang/prometheus"
dto "github.com/prometheus/client_model/go"

Expand Down
4 changes: 2 additions & 2 deletions pkg/line/line.go
Expand Up @@ -19,8 +19,8 @@ import (
"strings"
"unicode/utf8"

"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/prometheus/client_golang/prometheus"

"github.com/prometheus/statsd_exporter/pkg/event"
Expand Down
2 changes: 1 addition & 1 deletion pkg/line/line_test.go
Expand Up @@ -17,7 +17,7 @@ import (
"reflect"
"testing"

"github.com/go-kit/kit/log"
"github.com/go-kit/log"
"github.com/prometheus/client_golang/prometheus"

"github.com/prometheus/statsd_exporter/pkg/event"
Expand Down
4 changes: 2 additions & 2 deletions pkg/listener/listener.go
Expand Up @@ -20,8 +20,8 @@ import (
"os"
"strings"

"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/level"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/prometheus/client_golang/prometheus"

"github.com/prometheus/statsd_exporter/pkg/event"
Expand Down

0 comments on commit c5113b7

Please sign in to comment.