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

Allow config.events_retention to accept a number of records #3

Open
westonganger opened this issue Nov 25, 2024 · 1 comment
Open

Comments

@westonganger
Copy link
Contributor

Would be nice if we could configure events_retention to limit to a particular number of records instead of just a time frame

Something like

# config/initializers/inner_performance.rb
InnerPerformance.config.events_retention = {
  number_of_records: 10_000
}

# app/jobs/inner_performance/cleanup_job.rb
def perform
  InnerPerformance::Event.order(created_at: :desc).offset(my_limit).destroy_all
end
@mbajur
Copy link
Owner

mbajur commented Nov 25, 2024

I like that. Consider it planned :)

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

No branches or pull requests

2 participants