class Drnbench::Server::EngineConfiguration

Attributes

base_path[RW]
engine_config_path[RW]
fluentd[RW]
fluentd_options[RW]
host[RW]
port[RW]
tag[RW]

Public Class Methods

new() click to toggle source
# File lib/drnbench/server/configuration.rb, line 23
def initialize
  @port            = 24224
  @host            = "localhost"
  @tag             = "droonga"
  @base_path       = Pathname(Dir.pwd)
  @fluentd         = "fluentd"
  @fluentd_options = []
end

Public Instance Methods

engine_config_path=(path) click to toggle source
# File lib/drnbench/server/configuration.rb, line 32
def engine_config_path=(path)
  @engine_config_path = path
  engine_config_path
end