-
Notifications
You must be signed in to change notification settings - Fork 521
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle Partial Success in ConsumeTraces (#2571)
* testing * undo logs * add target_info_excluded_dimensions to userconfig * allow multi error for pushbytes * i love rebasing so much * no longer returning error instance.pushbytes * lint * test stable * squash * remove error in return * lint * fix tests * comments * rebase * fix * test log commit * refactor * no list * lint * changed proto * handle old proto * rebase * using two lists instead of nested list * clean up tests * make ingester more efficent * lint * lint * lint * remove pkg logger * moar lint * refactor response handling code * refactor * refactored instance * add unknown error as reason * lint * more lint
- Loading branch information
Showing
14 changed files
with
1,090 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
target: all | ||
|
||
server: | ||
http_listen_port: 3200 | ||
|
||
distributor: | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
|
||
overrides: | ||
max_bytes_per_trace: 600 | ||
max_traces_per_user: 6 | ||
ingestion_rate_limit_bytes: 6000 | ||
ingestion_burst_size_bytes: 6000 | ||
|
||
ingester: | ||
lifecycler: | ||
address: 127.0.0.1 | ||
ring: | ||
kvstore: | ||
store: inmemory | ||
replication_factor: 1 | ||
final_sleep: 0s | ||
trace_idle_period: 3600s | ||
|
||
storage: | ||
trace: | ||
backend: local | ||
local: | ||
path: /var/tempo | ||
pool: | ||
max_workers: 10 | ||
queue_depth: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.