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

chore(flamegraph): Lower number of concurrent reads #537

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
- Add utility to merge a list of android chunks and generate a speedscope result ([#531](https://github.com/getsentry/vroom/pull/531))
- Remove unused legacy flamegraph code path. ([#533](https://github.com/getsentry/vroom/pull/533))
- Remove generic metrics ingestion ([#534](https://github.com/getsentry/vroom/pull/534))
- Lower number of concurrent reads ([#537](https://github.com/getsentry/vroom/pull/537))

## 23.12.0

Expand Down
2 changes: 1 addition & 1 deletion cmd/vroom/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type (
ServiceConfig struct {
Environment string `env:"SENTRY_ENVIRONMENT" env-default:"development"`
Port int `env:"PORT" env-default:"8085"`
WorkerPoolSize int `env:"WORKER_POOL_SIZE" env-default:"100"`
WorkerPoolSize int `env:"WORKER_POOL_SIZE" env-default:"25"`

SentryDSN string `env:"SENTRY_DSN"`

Expand Down