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

receiver: Split - Upstream the changes from the PR #3580 #3845

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ceb309f
receiver split WORK IN PROGRESS
Chans321 Dec 13, 2020
edb6bd7
revert changes for cmd/main
yashrsharma44 Mar 10, 2021
a74f1c4
nitpicks
yashrsharma44 Mar 10, 2021
7565f96
removed redundant health check
yashrsharma44 Mar 10, 2021
83e198c
Add receive router registration
yashrsharma44 Mar 10, 2021
97ae1ee
not to be commited
yashrsharma44 Mar 10, 2021
e79ff16
modified pkg/receive/handler.go
yashrsharma44 Mar 10, 2021
760dc0f
modified pkg/receive/multitsdb.go
yashrsharma44 Mar 10, 2021
c987ad0
modified pkg/route
yashrsharma44 Mar 10, 2021
694b869
modified cmd/thanos/receive_route.go
yashrsharma44 Mar 11, 2021
bd90f93
replaced MultiError with NonNilMultiError
yashrsharma44 Mar 11, 2021
45a9c2c
changed to promauto
yashrsharma44 Mar 11, 2021
6a3ac83
removed unused variables
yashrsharma44 Mar 11, 2021
5d332c5
changed labelpb.Zlabel to timeseries
yashrsharma44 Mar 11, 2021
9893292
whitespace removal and revert the labels
yashrsharma44 Mar 11, 2021
6e61af6
use the main branch's implementation of MultiError
yashrsharma44 Mar 11, 2021
8774ec5
receiver split WORK IN PROGRESS
Chans321 Dec 13, 2020
9258dbe
Merge branch 'update-receive' of github.com:yashrsharma44/thanos into…
yashrsharma44 Mar 23, 2021
8fb03a2
Merge branch 'main' into update-receive
yashrsharma44 Mar 23, 2021
794de1e
renamed route to receive_route
yashrsharma44 Mar 23, 2021
251893f
Merge branch 'main' into update-receive
yashrsharma44 Mar 30, 2021
dae3830
fixed some regression issues which crept from previous changes
yashrsharma44 Mar 30, 2021
1944f29
temp fix
yashrsharma44 Mar 30, 2021
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
1 change: 1 addition & 0 deletions cmd/thanos/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ func main() {
registerCompact(app)
registerTools(app)
registerReceive(app)
registerReceiveRoute(app)
registerQueryFrontend(app)

cmd, setup := app.Parse()
Expand Down
Loading