Module: Sidekiq::Statistic

Defined in:
lib/sidekiq/statistic.rb,
lib/sidekiq/statistic/base.rb,
lib/sidekiq/statistic/version.rb,
lib/sidekiq/statistic/log_parser.rb,
lib/sidekiq/statistic/middleware.rb,
lib/sidekiq/statistic/configuration.rb,
lib/sidekiq/statistic/web_extension.rb,
lib/sidekiq/statistic/statistic/charts.rb,
lib/sidekiq/statistic/statistic/runtime.rb,
lib/sidekiq/statistic/statistic/workers.rb,
lib/sidekiq/statistic/web_api_extension.rb,
lib/sidekiq/statistic/statistic/realtime.rb,
lib/sidekiq/statistic/web_extension_helper.rb

Defined Under Namespace

Modules: WebApiExtension, WebExtension, WebExtensionHelper Classes: Base, Charts, Configuration, LogParser, Middleware, Realtime, Runtime, Workers

Constant Summary collapse

REDIS_HASH =
'sidekiq:statistic'.freeze
VERSION =
'1.1.0'

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject



29
30
31
# File 'lib/sidekiq/statistic.rb', line 29

def self.configuration
  @configuration ||= Configuration.new
end

Class Method Details

.configure {|configuration| ... } ⇒ Object

Yields:



33
34
35
# File 'lib/sidekiq/statistic.rb', line 33

def self.configure
  yield(configuration)
end