Sha256: 001ef7368a8da6cc6daa731eca12b1853182343457eabb647ef47036b930fdc1

Contents?: true

Size: 317 Bytes

Versions: 1

Compression:

Stored size: 317 Bytes

Contents

# frozen_string_literal: true

module Sidekiq
  module Statistic
    class Configuration
      attr_accessor :log_file, :last_log_lines, :max_timelist_length

      def initialize
        @log_file = 'log/sidekiq.log'
        @last_log_lines = 1_000
        @max_timelist_length = 250_000
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sidekiq-statistic-1.4.0 lib/sidekiq/statistic/configuration.rb