You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In a Rails project, we are using GoodJob as backend for ActiveJob.
I see that there is no GoodJob adapter in the Elastic APM Ruby client (which is fine of course), but it also seems to me that it's missing a generic ActiveJob integration. Right?
Describe the solution you'd like
An ActiveJob integration would be great.
Describe alternatives you've considered
We are using some custom instrumentation around the perform method:
# in our ApplicationJob base classaround_performdo |job,block|
ElasticAPM.with_transaction(job.class.name,:backgroundjob)do |_transaction|
block.callendend
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In a Rails project, we are using GoodJob as backend for ActiveJob.
I see that there is no GoodJob adapter in the Elastic APM Ruby client (which is fine of course), but it also seems to me that it's missing a generic ActiveJob integration. Right?
Describe the solution you'd like
An ActiveJob integration would be great.
Describe alternatives you've considered
We are using some custom instrumentation around the perform method:
The text was updated successfully, but these errors were encountered: