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

Fix typo in .json file name #6051

Closed
wants to merge 15 commits into from
Closed

Conversation

sshantel
Copy link
Contributor

Signed-off-by: Chantel Yip [email protected]

  • I added CHANGELOG entry for this change.
  • [ x ] Change is not relevant to the end user.

Changes

Verification

Signed-off-by: Chantel Yip <[email protected]>
docs/storage.md Outdated Show resolved Hide resolved
fpetkovski
fpetkovski previously approved these changes Jan 18, 2023
@fpetkovski
Copy link
Contributor

@sshantel we will need you to sign the DCO. You can do it with

git commit --amend --no-edit --signoff

followed by a force push.

Signed-off-by: cyip <[email protected]>
@sshantel
Copy link
Contributor Author

@fpetkovski Thanks, done! I missed that part here :)

@yeya24
Copy link
Contributor

yeya24 commented Jan 26, 2023

Oops sorry @sshantel. I merged this with main but seems it hit the DCO issue again. Would you mind rebasing main locally and force push? Then we should be good to merge, thanks!

GiedriusS and others added 13 commits January 28, 2023 11:20
* compact: remove cancel on SyncMetas errors (thanos-io#5923)

in a favour of 86b4039 SyncMetas will retry if it's retriable.
Also, the cleanPartialMarked calls are surrounded by runutil.Repeat() will be repeated,
the ones not and are not retriable will throw an interrupt to run.Group() by returning err
and Group will call cancel() as it's configured for its interrupt func.

Signed-off-by: Seena Fallah <[email protected]>

Signed-off-by: Seena Fallah <[email protected]>

* Cut v0.30.0-rc.0 (thanos-io#5992)

* Cut v0.30.0-rc.0

Signed-off-by: bwplotka <[email protected]>

* mdox fix.

Signed-off-by: bwplotka <[email protected]>

Signed-off-by: bwplotka <[email protected]>
Signed-off-by: Giedrius Statkevičius <[email protected]>

* Cut 0.30.0 (thanos-io#6011)

Signed-off-by: bwplotka <[email protected]>

Signed-off-by: bwplotka <[email protected]>
Signed-off-by: Giedrius Statkevičius <[email protected]>

* *: cut 0.30.1 (thanos-io#6017)

* fix duplicate metrics registration in redis client (thanos-io#6009)

* fix duplicate metrics registration in redis client

Signed-off-by: Kama Huang <[email protected]>

* fixed test

Signed-off-by: Kama Huang <[email protected]>

Signed-off-by: Kama Huang <[email protected]>

* *: cut 0.30.1

Add CHANGELOG entry.

Signed-off-by: Giedrius Statkevičius <[email protected]>

Signed-off-by: Kama Huang <[email protected]>
Signed-off-by: Giedrius Statkevičius <[email protected]>
Co-authored-by: Kama Huang <[email protected]>
Signed-off-by: Giedrius Statkevičius <[email protected]>

* Tracing: Fix sampler defaults (thanos-io#5887)

* Fix sampler defaults

Signed-off-by: Matej Gera <[email protected]>

* Add CHANGELOG

Signed-off-by: Matej Gera <[email protected]>

* Replace checkout with git-shallow-clone (thanos-io#5829)

Signed-off-by: Matej Gera <[email protected]>

Signed-off-by: Matej Gera <[email protected]>

Signed-off-by: Matej Gera <[email protected]>
Signed-off-by: Giedrius Statkevičius <[email protected]>

* CHANGELOG: fix

Signed-off-by: Giedrius Statkevičius <[email protected]>

Signed-off-by: Seena Fallah <[email protected]>
Signed-off-by: bwplotka <[email protected]>
Signed-off-by: Giedrius Statkevičius <[email protected]>
Signed-off-by: Kama Huang <[email protected]>
Signed-off-by: Matej Gera <[email protected]>
Co-authored-by: Seena Fallah <[email protected]>
Co-authored-by: Kama Huang <[email protected]>
* Use e2edb.NewMinio to disable SSE

Signed-off-by: Saswata Mukherjee <[email protected]>

* Use temp fork for TLS

Signed-off-by: Saswata Mukherjee <[email protected]>

* Fix broken rules api fanout test

Signed-off-by: Saswata Mukherjee <[email protected]>

* Fix broken query compatibility test

Signed-off-by: Saswata Mukherjee <[email protected]>

* Remove fork

Signed-off-by: Saswata Mukherjee <[email protected]>

Signed-off-by: Saswata Mukherjee <[email protected]>
Allow disabling max concurrency limit by setting limit to <= 0.
Previously it was impossible to disable this limit.

Signed-off-by: Giedrius Statkevičius <[email protected]>

Signed-off-by: Giedrius Statkevičius <[email protected]>
Co-authored-by: Matej Gera <[email protected]>
This PR changes the Thanos mixin dashboard widgets that are using
the rate function from $interval magic variable to __rate_interval.

It has been added in Grafana 7.2 for that exact purpose.

Signed-off-by: Daniel Mellado <[email protected]>

Signed-off-by: Daniel Mellado <[email protected]>
This commit extends the distributed execution proposal with an option
to run distributed queries against a pool of Thanos Receivers.

Signed-off-by: Filip Petkovski <[email protected]>
Signed-off-by: Filip Petkovski <[email protected]>
* fixed panic because of nil sampler

Signed-off-by: Vasiliy Rumyantsev <[email protected]>

* added CHANGELOG entry

Signed-off-by: Vasiliy Rumyantsev <[email protected]>

Signed-off-by: Vasiliy Rumyantsev <[email protected]>
* Fix Receiver panic when querying uninitialized TSDBs

Receivers currently panic when retrieving labels for a TSDB that is
being initialized. The reason for this is that the tenant is added to
the tenants map and the TSDB is started in the background.
When retrieving labels, the MultiTSDB creates Clients for each TSDB,
even if a TSDB is not yet ready.

Signed-off-by: Filip Petkovski <[email protected]>

* Add CHANGELOG

Signed-off-by: Filip Petkovski <[email protected]>

* Gracefully terminate test

Signed-off-by: Filip Petkovski <[email protected]>

Signed-off-by: Filip Petkovski <[email protected]>
* Added native histogram support for sidecar, query, receiver.

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Added comment

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Cleanup native histogram tests

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Made native hist test ha and replace usage of at with att

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Fix deduplication with native histograms

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Enabled native histogram writing

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Committed missing files for write

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Added benchmark for histogram writing

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Fixed chunkSeriesIterator

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Enabled replication for native histogram write test

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Lint native histogram test imports

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Removed ToDo comments

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Cleanup

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* Renamed lastValue of dedup iter and added TODO

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* Fixed typo

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* Added hidden native histogram flag for receive tsdb

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* merge

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* Comments and reverted change to qfe

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* Go mod tidy

Signed-off-by: Sebastian Rabenhorst <[email protected]>

* Dedup iter nit

Signed-off-by: Sebastian Rabenhorst <[email protected]>

Signed-off-by: Sebastian Rabenhorst <[email protected]>
This commit updates the Thanos PromQL engine to the latest version.

Signed-off-by: Filip Petkovski <[email protected]>

Signed-off-by: Filip Petkovski <[email protected]>
* Receive external labels proposal

Signed-off-by: haanhvu <[email protected]>

* Restructure and edit proposal's content

Signed-off-by: haanhvu <[email protected]>

* Update proposal

Signed-off-by: haanhvu <[email protected]>

* Fix doc error

Signed-off-by: haanhvu <[email protected]>

Signed-off-by: haanhvu <[email protected]>
Signed-off-by: Ben Ye <[email protected]>

Signed-off-by: Ben Ye <[email protected]>
* Fix stores filtering resets on reload

`g0.store_matches` parameter appears in the url but doesn't applies
in the frontend. Looks like it has been done on purpose and by
removing a small piece of code fixes this issue.

variable named `debugMode` is used for the store filtering checkbox
which is an unappropriate name. Using `enableStoreFiltering`
variable to represent the state of checkbox.

Signed-off-by: Pradyumna Krishna <[email protected]>

* Regenerate bindata.go

Signed-off-by: Pradyumna Krishna <[email protected]>

Signed-off-by: Pradyumna Krishna <[email protected]>
@sshantel
Copy link
Contributor Author

new PR here due to merge conflicts: #6087

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants