Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
Closed
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Main (unreleased)

- [ENHANCEMENT] Update Loki dependency to v2.4.1 (@rlankfo)

# v0.21.1 (2021-11-18)

- [BUGFIX] Fix panic when using postgres_exporter integration (@saputradharma)
Expand Down
9 changes: 5 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ require (
cloud.google.com/go/pubsub v1.5.0 // indirect
contrib.go.opencensus.io/exporter/prometheus v0.4.0
github.com/Shopify/sarama v1.30.0
github.com/cortexproject/cortex v1.10.1-0.20211014125347-85c378182d0d
github.com/cortexproject/cortex v1.10.1-0.20211104100946-3f329a21cad4
github.com/davidmparrott/kafka_exporter/v2 v2.0.1
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46
github.com/fatih/structs v1.1.0
github.com/go-kit/kit v0.12.0 // indirect
github.com/go-kit/log v0.2.0
github.com/go-logfmt/logfmt v0.5.1
github.com/go-logr/logr v1.0.0
Expand All @@ -20,8 +19,8 @@ require (
github.com/google/dnsmasq_exporter v0.0.0-00010101000000-000000000000
github.com/google/go-jsonnet v0.17.0
github.com/gorilla/mux v1.8.0
github.com/grafana/dskit v0.0.0-20211011144203-3a88ec0b675f
github.com/grafana/loki v1.6.2-0.20211021114919-0ae0d4da122d
github.com/grafana/dskit v0.0.0-20211021180445-3bd016e9d7f1
github.com/grafana/loki v1.6.2-0.20211108122114-f61a4d2612d8
github.com/grafana/tempo v1.0.1
github.com/hashicorp/consul/api v1.11.0
github.com/hashicorp/go-cleanhttp v0.5.2
Expand Down Expand Up @@ -131,6 +130,8 @@ replace (
// Required for redis_exporter, which is incompatible with v2.0.0+incompatible.
replace github.com/gomodule/redigo => github.com/gomodule/redigo v1.8.2

replace github.com/go-kit/kit => github.com/go-kit/kit v0.12.0

// Excluding fixes a conflict in test packages and allows "go mod tidy" to run.
exclude google.golang.org/grpc/examples v0.0.0-20200728065043-dfc0c05b2da9

Expand Down
Loading