Jorge Manrubia

Results 17 issues of Jorge Manrubia

`wasCalled` and `wasCalledWith` have been replaced by `toHaveBeenCalled` and `toHaveBeenCalledWith`. ``wasNotCalled` and `wasNotCalledWith` have been removed.

I don't manage to get sampling working. I have tried to target specific services: ```ruby Datadog.configure do |config| config.tracing.sampler = Datadog::Tracing::Sampling::PrioritySampler.new( post_sampler: Datadog::Tracing::Sampling::RuleSampler.new( [ Datadog::Tracing::Sampling::SimpleRule.new(service: /^redis.*/, sample_rate: 0.1) ] )...

bug
core
community

## active_job not instrumenting error status I created this test job: ```ruby class FailingJobToDebugDatadog < ActiveJob::Base queue_as :background def perform raise "This is a debug job to test Datadog" end...

integrations

When we upgraded to version 1.0 our resque processes started to leak memory and, sporadically, we registered some sudden multi-GB memory bloats: I disabled the `resque` and `active_job` instrumentation integrations...

bug
integrations
community
profiling

I have this setup: ```ruby config.tracing.instrument :rails, service_name: "rails-app", cache_service: "rails-cache" config.tracing.instrument :active_job, service_name: "active_job" ``` However, active job traces end up in the `rails-app` service. I expected them in...

bug
integrations
community

This adds supports for two things: - Passing params for listing operations. I wanted to be able to use `query` params when [finding customers](https://developer.helpscout.com/mailbox-api/endpoints/customers/list/). I think supporting params in general...

This enters an infinite loop: ```ruby schedule = IceCube::Schedule.new(Time.current) do |schedule| schedule.add_recurrence_rule IceCube::IcalParser.rule_from_ical("FREQ=YEARLY;INTERVAL=1;BYMONTHDAY=31;BYMONTH=2") end schedule.first(2) # hangs! ``` We have patched this internally with: ```ruby module ValidatedRuleWithInfiniteRecursionGuard private MAX_LOOPS =...

We use the flash to store potentially very long values such as the `state` or the redirect url. This adds to the session storage needs, which can be problematic when...

## Summary Adds support for banning clients during a given period of time. This PR adds a new option `:ban_duration`. When set, if a client exceeds the rate limit, _all_...

0 - Backlog