Low commit activity in last 3 years
A long-lived project that still receives updates
Patches ActiveJob to add trace_id attribute.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
>= 0
~> 12.3
~> 3.8

Runtime

 Project Readme

Gem Version CI Status

ActiveJob::Traceable

Patches ActiveJob to add attribute tracing_info, which is added as log's tag. The purpose of this patch is to be able to trace which workers are called as a result of user's HTTP request.

Installation

Add this line to your application's Gemfile:

gem 'activejob-traceable'

And then execute:

$ bundle

Or install it yourself as:

$ gem install activejob-traceable

Configuration

Create an initializer to tell ActiveJob how to get current tracing_info and how to set it once deserialized:

# config/initializers/activejob_traceable.rb

ActiveJob::Traceable.tracing_info_getter = lambda do
  {
    actor_id: CurrentScope.actor_id,
    correlation_id: CurrentScope.correlation_id
  }
end

ActiveJob::Traceable.tracing_info_setter = lambda do |attributes|
  CurrentScope.actor_id = attributes[:actor_id]
  CurrentScope.correlation_id = attributes[:correlation_id]
end

Usage

Once configured, works out of the box.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, make sure you updated the version number in version.rb, and then create a new release and tag from github.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/qonto/activejob-traceable. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Releasing

To publish a new version to rubygems, update the version in lib/activejob/traceable/version.rb, and merge.