Skip to content

Commit

Permalink
Lint and CHANGELOG
Browse files Browse the repository at this point in the history
Signed-off-by: Annanay <[email protected]>
  • Loading branch information
annanay25 committed Dec 1, 2021
1 parent 362d97c commit f76ea92
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## main / unreleased

* [CHANGE] Search: Add new per-tenant limit `max_bytes_per_tag_values_query` to limit the size of tag-values response. [#1068](https://github.com/grafana/tempo/pull/1068) (@annanay25)
* [ENHANCEMENT] Expose `upto` parameter on hedged requests for each backend with `hedge_requests_up_to`. [#1085](https://github.com/grafana/tempo/pull/1085) (@joe-elliott)
* [ENHANCEMENT] Search: drop use of TagCache, extract tags and tag values on-demand [#1068](https://github.com/grafana/tempo/pull/1068) (@kvrhdn)
* [ENHANCEMENT] Jsonnet: add `$._config.namespace` to filter by namespace in cortex metrics [#1098](https://github.com/grafana/tempo/pull/1098) (@mapno)
Expand Down
3 changes: 2 additions & 1 deletion modules/ingester/instance_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ package ingester

import (
"context"
"sort"

cortex_util "github.com/cortexproject/cortex/pkg/util/log"
"github.com/go-kit/log/level"
"github.com/grafana/tempo/pkg/util"
"github.com/opentracing/opentracing-go"
ot_log "github.com/opentracing/opentracing-go/log"
"github.com/weaveworks/common/user"
"sort"

"github.com/grafana/tempo/pkg/tempofb"
"github.com/grafana/tempo/pkg/tempopb"
Expand Down
7 changes: 4 additions & 3 deletions modules/querier/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ package querier
import (
"context"
"fmt"
"net/http"
"sort"
"sync"

cortex_worker "github.com/cortexproject/cortex/pkg/querier/worker"
"github.com/cortexproject/cortex/pkg/util/log"
"github.com/go-kit/log/level"
Expand All @@ -27,9 +31,6 @@ import (
httpgrpc_server "github.com/weaveworks/common/httpgrpc/server"
"github.com/weaveworks/common/user"
"go.uber.org/multierr"
"net/http"
"sort"
"sync"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/map_size.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ func MapSizeWithinLimit(uniqueMap map[string]struct{}, limit int) bool {
return true
}
return false
}
}

0 comments on commit f76ea92

Please sign in to comment.