Sha256: 5c2ef99fbddbb48cde19680e060f742c52542706403454b2b2e8d89fdff8604d
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
Eye.load("./eye/*.rb") # load submodules Eye.config do logger "/tmp/eye.log" # eye logger logger_level Logger::DEBUG end Eye.app "test" do working_dir File.expand_path(File.join(File.dirname(__FILE__), %w[ processes ])) stdall "trash.log" # stdout + stderr env "APP_ENV" => "production" triggers :flapping, :times => 10, :within => 1.minute group "samples" do env "A" => "1" # env merging chain :grace => 5.seconds, :action => :restart # restarting with 5s interval, one by one. # eye daemonized process process("sample1") do pid_file "1.pid" # expanded with working_dir start_command "ruby ./sample.rb" daemonize true stdall "sample1.log" checks :cpu, :below => 30, :times => [3, 5] end # self daemonized process process("sample2") do pid_file "2.pid" start_command "ruby ./sample.rb -d --pid 2.pid --log sample2.log" stop_command "kill -9 {{PID}}" checks :memory, :below => 300.megabytes, :times => 3 end end # daemon with 3 childs process("forking") do pid_file "forking.pid" start_command "ruby ./forking.rb start" stop_command "ruby forking.rb stop" stdall "forking.log" start_timeout 5.seconds stop_grace 5.seconds monitor_children do childs_update_period 5.seconds restart_command "kill -2 {{PID}}" checks :memory, :below => 300.megabytes, :times => 3 end end process :event_machine do pid_file 'em.pid' start_command 'ruby em.rb' stdall 'em.log' daemonize true checks :socket, :addr => "tcp://127.0.0.1:33221", :send_data => "ping", :expect_data => /pong/, :every => 10.seconds, :times => 2, :timeout => 1.second end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eye-0.1.11 | examples/test.eye |