Lukas Eklund

Results 7 issues of Lukas Eklund

When loading a collection if you do ``` cistern.things(page: 1, per_page: 3).each {|thing| thing.call } ``` the parameters won't get passed through to the `all` call that the `load_records` method...

New syntax described here: https://github.com/codeclimate/ruby-test-reporter/blob/master/CHANGELOG.md#v100-2016-11-03 The change will also require an update to the default rake task so that it reports to CodeClimate. I fixed it for #78 with this...

It might be useful to have the error class added as a label when a job fails.

We report the number or thread working jobs but we don't currently report the number of available workers. This can be done via the `Sidekiq::ProcessSet` API (https://github.com/mperham/sidekiq/blob/master/lib/sidekiq/api.rb#L721) and would be...

The metric is defined as `sidekiq_allocated_objects` but isn't reported because periodic metrics is trying to record `total_allocated_objects`: https://github.com/fastly/sidekiq-prometheus/blob/master/lib/sidekiq_prometheus/periodic_metrics.rb#L23 One or the other should be fixed.

Sidekiq Ent rate limiters record metrics that can be exported to prometheus: https://github.com/mperham/sidekiq/wiki/Ent-Rate-Limiting#concurrent-metrics

There is a race condition that exists when the scrape is happening while all the per datacenter metrics are being incremented. When the results are processed from the real-time stats...