Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrap object store Prometheus registry #6152

Merged
merged 26 commits into from
Jul 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
da986e7
Wrap object store Prometheus registery
douglascamata Feb 21, 2023
a4717f6
Merge branch 'main' into objstore-registry-prefix
douglascamata Mar 17, 2023
888b28d
Update objstore to the latest version
douglascamata Mar 24, 2023
4b0209e
Merge branch 'main' of github.com:thanos-io/thanos into objstore-regi…
douglascamata Mar 24, 2023
2f6d769
Fix modules
douglascamata Mar 24, 2023
97b9df8
Rerun CI
douglascamata Mar 24, 2023
898ce29
Wrap metrics registerer for objstore bucket
douglascamata Mar 24, 2023
a725a4d
Remove prefix from Thanos Store metrics
douglascamata Mar 24, 2023
b1a3388
Fix goimports
douglascamata Mar 24, 2023
42e228d
Merge branch 'main' of github.com:thanos-io/thanos into objstore-regi…
douglascamata Mar 27, 2023
4441e76
Merge branch 'main' of github.com:thanos-io/thanos into objstore-regi…
douglascamata Mar 27, 2023
37b5d83
Rerun CI
douglascamata Mar 27, 2023
fdd58f4
Rerun CI
douglascamata Mar 27, 2023
05c8923
Merge branch 'main' into objstore-registry-prefix
douglascamata Mar 30, 2023
6ac7018
Merge branch 'main' of github.com:thanos-io/thanos into objstore-regi…
douglascamata May 8, 2023
b1cd68d
Put back upgraded objstore dep
douglascamata May 8, 2023
31b1bb8
Rerun CI
douglascamata May 8, 2023
526fa3c
Merge branch 'main' of github.com:thanos-io/thanos into objstore-regi…
douglascamata Jun 26, 2023
eb9b27b
Rerun CI
douglascamata Jun 26, 2023
9f32e3e
Move to more recent ref of thanos/objstore
douglascamata Jul 11, 2023
19793dc
Merge branch 'main' of github.com:thanos-io/thanos into objstore-regi…
douglascamata Jul 11, 2023
8d4de2e
Ignore OBS in objstore tests
douglascamata Jul 11, 2023
dc1ecd6
Fix linting error on main test after objstore upgrade
douglascamata Jul 11, 2023
15df262
Skip OCS objstore test in circle ci
douglascamata Jul 11, 2023
bc6e8d4
Fix echo in makefile
douglascamata Jul 11, 2023
b0b8139
Fix typo
douglascamata Jul 11, 2023
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: 1 addition & 1 deletion cmd/thanos/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ func runStore(

options := []store.BucketStoreOption{
store.WithLogger(logger),
store.WithRegistry(reg),
GiedriusS marked this conversation as resolved.
Show resolved Hide resolved
store.WithRegistry(extprom.WrapRegistererWithPrefix("thanos_", reg)),
store.WithIndexCache(indexCache),
store.WithQueryGate(queriesGate),
store.WithChunkPool(chunkPool),
Expand Down