Class: Appsignal::Probes::SidekiqProbe Private
- Includes:
- Helpers
- Defined in:
- lib/appsignal/probes/sidekiq.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Classes: Sidekiq6Adapter, Sidekiq7Adapter
Instance Attribute Summary collapse
- #config ⇒ Object readonly private
Class Method Summary collapse
- .dependencies_present? ⇒ Boolean private
- .sidekiq7_and_greater? ⇒ Boolean private
Instance Method Summary collapse
- #call ⇒ Object private
-
#initialize(config = {}) ⇒ SidekiqProbe
constructor
private
A new instance of SidekiqProbe.
Constructor Details
#initialize(config = {}) ⇒ SidekiqProbe
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of SidekiqProbe.
56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/appsignal/probes/sidekiq.rb', line 56 def initialize(config = {}) @config = config @cache = {} is_sidekiq7 = self.class.sidekiq7_and_greater? @adapter = is_sidekiq7 ? Sidekiq7Adapter : Sidekiq6Adapter unless config.empty? formatted_config = config.map { |key, value| "#{key}: #{value.inspect}" }.join(", ") config_string = " with config: #{formatted_config}" end Appsignal.internal_logger.debug("Initializing Sidekiq probe#{config_string}") require "sidekiq/api" end |
Instance Attribute Details
#config ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
42 43 44 |
# File 'lib/appsignal/probes/sidekiq.rb', line 42 def config @config end |
Class Method Details
.dependencies_present? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
49 50 51 52 53 54 |
# File 'lib/appsignal/probes/sidekiq.rb', line 49 def self.dependencies_present? return true if sidekiq7_and_greater? return false unless defined?(::Redis::VERSION) # Sidekiq <= 6 Gem::Version.new(::Redis::VERSION) >= Gem::Version.new("3.3.5") end |
.sidekiq7_and_greater? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
44 45 46 |
# File 'lib/appsignal/probes/sidekiq.rb', line 44 def self.sidekiq7_and_greater? Gem::Version.new(::Sidekiq::VERSION) >= Gem::Version.new("7.0.0") end |
Instance Method Details
#call ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
72 73 74 75 76 |
# File 'lib/appsignal/probes/sidekiq.rb', line 72 def call track_redis_info track_stats track_queues end |