eye 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. data/.gitignore +31 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +22 -0
  5. data/README.md +132 -0
  6. data/Rakefile +18 -0
  7. data/bin/eye +282 -0
  8. data/bin/loader_eye +56 -0
  9. data/examples/processes/em.rb +56 -0
  10. data/examples/processes/forking.rb +20 -0
  11. data/examples/processes/sample.rb +144 -0
  12. data/examples/rbenv.eye +11 -0
  13. data/examples/test.eye +65 -0
  14. data/examples/unicorn.eye +29 -0
  15. data/eye.gemspec +37 -0
  16. data/lib/eye.rb +25 -0
  17. data/lib/eye/application.rb +65 -0
  18. data/lib/eye/checker.rb +118 -0
  19. data/lib/eye/checker/cpu.rb +27 -0
  20. data/lib/eye/checker/file_ctime.rb +29 -0
  21. data/lib/eye/checker/file_size.rb +38 -0
  22. data/lib/eye/checker/http.rb +94 -0
  23. data/lib/eye/checker/memory.rb +27 -0
  24. data/lib/eye/checker/socket.rb +148 -0
  25. data/lib/eye/checker/validation.rb +49 -0
  26. data/lib/eye/child_process.rb +75 -0
  27. data/lib/eye/client.rb +32 -0
  28. data/lib/eye/control.rb +2 -0
  29. data/lib/eye/controller.rb +43 -0
  30. data/lib/eye/controller/commands.rb +64 -0
  31. data/lib/eye/controller/helpers.rb +61 -0
  32. data/lib/eye/controller/load.rb +224 -0
  33. data/lib/eye/controller/send_command.rb +88 -0
  34. data/lib/eye/controller/status.rb +136 -0
  35. data/lib/eye/dsl.rb +52 -0
  36. data/lib/eye/dsl/application_opts.rb +33 -0
  37. data/lib/eye/dsl/chain.rb +12 -0
  38. data/lib/eye/dsl/child_process_opts.rb +7 -0
  39. data/lib/eye/dsl/config_opts.rb +11 -0
  40. data/lib/eye/dsl/group_opts.rb +27 -0
  41. data/lib/eye/dsl/helpers.rb +12 -0
  42. data/lib/eye/dsl/main.rb +58 -0
  43. data/lib/eye/dsl/opts.rb +88 -0
  44. data/lib/eye/dsl/process_opts.rb +21 -0
  45. data/lib/eye/dsl/pure_opts.rb +132 -0
  46. data/lib/eye/dsl/validate.rb +41 -0
  47. data/lib/eye/group.rb +125 -0
  48. data/lib/eye/group/chain.rb +68 -0
  49. data/lib/eye/io/unix_server.rb +44 -0
  50. data/lib/eye/io/unix_socket.rb +39 -0
  51. data/lib/eye/loader.rb +13 -0
  52. data/lib/eye/logger.rb +80 -0
  53. data/lib/eye/process.rb +83 -0
  54. data/lib/eye/process/child.rb +61 -0
  55. data/lib/eye/process/commands.rb +256 -0
  56. data/lib/eye/process/config.rb +70 -0
  57. data/lib/eye/process/controller.rb +72 -0
  58. data/lib/eye/process/data.rb +46 -0
  59. data/lib/eye/process/monitor.rb +97 -0
  60. data/lib/eye/process/notify.rb +17 -0
  61. data/lib/eye/process/scheduler.rb +50 -0
  62. data/lib/eye/process/states.rb +92 -0
  63. data/lib/eye/process/states_history.rb +62 -0
  64. data/lib/eye/process/system.rb +60 -0
  65. data/lib/eye/process/trigger.rb +32 -0
  66. data/lib/eye/process/watchers.rb +67 -0
  67. data/lib/eye/server.rb +51 -0
  68. data/lib/eye/settings.rb +35 -0
  69. data/lib/eye/system.rb +145 -0
  70. data/lib/eye/system_resources.rb +83 -0
  71. data/lib/eye/trigger.rb +53 -0
  72. data/lib/eye/trigger/flapping.rb +24 -0
  73. data/lib/eye/utils.rb +5 -0
  74. data/lib/eye/utils/alive_array.rb +31 -0
  75. data/lib/eye/utils/celluloid_chain.rb +51 -0
  76. data/lib/eye/utils/leak_19.rb +7 -0
  77. data/lib/eye/utils/tail.rb +20 -0
  78. data/spec/checker/cpu_spec.rb +58 -0
  79. data/spec/checker/file_ctime_spec.rb +34 -0
  80. data/spec/checker/file_size_spec.rb +107 -0
  81. data/spec/checker/http_spec.rb +109 -0
  82. data/spec/checker/memory_spec.rb +64 -0
  83. data/spec/checker/socket_spec.rb +116 -0
  84. data/spec/checker_spec.rb +188 -0
  85. data/spec/child_process/child_process_spec.rb +46 -0
  86. data/spec/client_server_spec.rb +34 -0
  87. data/spec/controller/commands_spec.rb +92 -0
  88. data/spec/controller/controller_spec.rb +133 -0
  89. data/spec/controller/find_objects_spec.rb +150 -0
  90. data/spec/controller/group_spec.rb +110 -0
  91. data/spec/controller/intergration_spec.rb +327 -0
  92. data/spec/controller/load_spec.rb +326 -0
  93. data/spec/controller/races_spec.rb +70 -0
  94. data/spec/controller/stop_on_delete_spec.rb +157 -0
  95. data/spec/dsl/chain_spec.rb +140 -0
  96. data/spec/dsl/checks_spec.rb +202 -0
  97. data/spec/dsl/config_spec.rb +44 -0
  98. data/spec/dsl/dsl_spec.rb +73 -0
  99. data/spec/dsl/getter_spec.rb +223 -0
  100. data/spec/dsl/integration_spec.rb +311 -0
  101. data/spec/dsl/load_spec.rb +52 -0
  102. data/spec/dsl/process_spec.rb +330 -0
  103. data/spec/dsl/sub_procs_spec.rb +93 -0
  104. data/spec/dsl/with_server_spec.rb +104 -0
  105. data/spec/example/em.rb +57 -0
  106. data/spec/example/forking.rb +20 -0
  107. data/spec/example/sample.rb +154 -0
  108. data/spec/fixtures/dsl/0.rb +8 -0
  109. data/spec/fixtures/dsl/0a.rb +8 -0
  110. data/spec/fixtures/dsl/0c.rb +8 -0
  111. data/spec/fixtures/dsl/1.rb +5 -0
  112. data/spec/fixtures/dsl/bad.eye +6 -0
  113. data/spec/fixtures/dsl/configs/1.eye +3 -0
  114. data/spec/fixtures/dsl/configs/2.eye +1 -0
  115. data/spec/fixtures/dsl/configs/3.eye +1 -0
  116. data/spec/fixtures/dsl/configs/4.eye +3 -0
  117. data/spec/fixtures/dsl/empty.eye +20 -0
  118. data/spec/fixtures/dsl/include_test.eye +5 -0
  119. data/spec/fixtures/dsl/include_test/1.rb +6 -0
  120. data/spec/fixtures/dsl/include_test/ha.rb +4 -0
  121. data/spec/fixtures/dsl/include_test2.eye +5 -0
  122. data/spec/fixtures/dsl/integration.eye +30 -0
  123. data/spec/fixtures/dsl/integration2.eye +32 -0
  124. data/spec/fixtures/dsl/integration_locks.eye +30 -0
  125. data/spec/fixtures/dsl/integration_sor.eye +32 -0
  126. data/spec/fixtures/dsl/integration_sor2.eye +27 -0
  127. data/spec/fixtures/dsl/integration_sor3.eye +32 -0
  128. data/spec/fixtures/dsl/load.eye +25 -0
  129. data/spec/fixtures/dsl/load2.eye +7 -0
  130. data/spec/fixtures/dsl/load2_dup2.eye +13 -0
  131. data/spec/fixtures/dsl/load2_dup_pid.eye +7 -0
  132. data/spec/fixtures/dsl/load3.eye +10 -0
  133. data/spec/fixtures/dsl/load4.eye +7 -0
  134. data/spec/fixtures/dsl/load5.eye +8 -0
  135. data/spec/fixtures/dsl/load6.eye +17 -0
  136. data/spec/fixtures/dsl/load_dubls.eye +36 -0
  137. data/spec/fixtures/dsl/load_dup_ex_names.eye +15 -0
  138. data/spec/fixtures/dsl/load_error.eye +5 -0
  139. data/spec/fixtures/dsl/load_error_folder/load3.eye +10 -0
  140. data/spec/fixtures/dsl/load_error_folder/load4.eye +7 -0
  141. data/spec/fixtures/dsl/load_folder/load3.eye +10 -0
  142. data/spec/fixtures/dsl/load_folder/load4.eye +7 -0
  143. data/spec/fixtures/dsl/load_int.eye +8 -0
  144. data/spec/fixtures/dsl/load_int2.eye +13 -0
  145. data/spec/fixtures/dsl/load_logger.eye +26 -0
  146. data/spec/fixtures/dsl/load_logger2.eye +3 -0
  147. data/spec/fixtures/dsl/long_load.eye +5 -0
  148. data/spec/fixtures/dsl/subfolder1/proc1.rb +3 -0
  149. data/spec/fixtures/dsl/subfolder2.eye +9 -0
  150. data/spec/fixtures/dsl/subfolder2/common.rb +1 -0
  151. data/spec/fixtures/dsl/subfolder2/proc2.rb +3 -0
  152. data/spec/fixtures/dsl/subfolder2/sub/proc3.rb +6 -0
  153. data/spec/fixtures/dsl/subfolder3.eye +8 -0
  154. data/spec/fixtures/dsl/subfolder3/common.rb +1 -0
  155. data/spec/fixtures/dsl/subfolder3/proc4.rb +3 -0
  156. data/spec/fixtures/dsl/subfolder3/sub/proc5.rb +6 -0
  157. data/spec/fixtures/dsl/subfolder4.eye +6 -0
  158. data/spec/fixtures/dsl/subfolder4/a.rb +2 -0
  159. data/spec/fixtures/dsl/subfolder4/b.rb +1 -0
  160. data/spec/fixtures/dsl/subfolder4/c.rb +1 -0
  161. data/spec/mock_spec.rb +32 -0
  162. data/spec/process/checks/child_checks_spec.rb +79 -0
  163. data/spec/process/checks/cpu_spec.rb +114 -0
  164. data/spec/process/checks/ctime_spec.rb +43 -0
  165. data/spec/process/checks/fsize_spec.rb +22 -0
  166. data/spec/process/checks/http_spec.rb +52 -0
  167. data/spec/process/checks/intergration_spec.rb +32 -0
  168. data/spec/process/checks/memory_spec.rb +113 -0
  169. data/spec/process/child_process_spec.rb +125 -0
  170. data/spec/process/config_spec.rb +75 -0
  171. data/spec/process/controller_spec.rb +173 -0
  172. data/spec/process/monitoring_spec.rb +180 -0
  173. data/spec/process/restart_spec.rb +174 -0
  174. data/spec/process/scheduler_spec.rb +150 -0
  175. data/spec/process/start_spec.rb +261 -0
  176. data/spec/process/states_history_spec.rb +118 -0
  177. data/spec/process/stop_spec.rb +150 -0
  178. data/spec/process/system_spec.rb +100 -0
  179. data/spec/process/triggers/flapping_spec.rb +81 -0
  180. data/spec/process/update_config_spec.rb +63 -0
  181. data/spec/spec_helper.rb +120 -0
  182. data/spec/support/rr_celluloid.rb +36 -0
  183. data/spec/support/scheduler_hack.rb +16 -0
  184. data/spec/support/spec_support.rb +164 -0
  185. data/spec/system_resources_spec.rb +59 -0
  186. data/spec/system_spec.rb +170 -0
  187. data/spec/utils/alive_array_spec.rb +50 -0
  188. data/spec/utils/celluloid_chain_spec.rb +82 -0
  189. data/spec/utils/tail_spec.rb +21 -0
  190. metadata +558 -0
@@ -0,0 +1,30 @@
1
+ Eye.app("int") do
2
+ working_dir File.join(File.dirname(__FILE__), %w{.. .. example})
3
+ stdall "shlak.log"
4
+
5
+ group "samples" do
6
+ process("sample1") do
7
+ pid_file "1.pid"
8
+ start_command "ruby sample.rb"
9
+ daemonize true
10
+ end
11
+
12
+ process("sample2") do
13
+ pid_file "2.pid"
14
+ start_command "ruby sample.rb -d --pid 2.pid --log shlak.log"
15
+ checks :memory, :below => 300.megabytes
16
+ end
17
+ end
18
+
19
+ process("forking") do
20
+ pid_file "forking.pid"
21
+ start_command "ruby forking.rb start"
22
+ stop_command "ruby forking.rb stop"
23
+
24
+ monitor_children do
25
+ childs_update_period 5.seconds
26
+ restart_command "kill -2 {{PID}}"
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1,32 @@
1
+ # different from integration.eye, with names of the processes
2
+
3
+ Eye.app("int") do
4
+ working_dir File.join(File.dirname(__FILE__), %w{.. .. example})
5
+ stdall "shlak.log"
6
+
7
+ group "samples" do
8
+ process("sample1_") do
9
+ pid_file "1.pid"
10
+ start_command "ruby sample.rb"
11
+ daemonize true
12
+ end
13
+
14
+ process("sample2_") do
15
+ pid_file "2.pid"
16
+ start_command "ruby sample.rb -d --pid 2.pid --log shlak.log"
17
+ checks :memory, :below => 300.megabytes
18
+ end
19
+ end
20
+
21
+ process("forking") do
22
+ pid_file "forking.pid"
23
+ start_command "ruby forking.rb start"
24
+ stop_command "ruby forking.rb stop"
25
+
26
+ monitor_children do
27
+ childs_update_period 5.seconds
28
+ restart_command "kill -2 {{PID}}"
29
+ end
30
+ end
31
+
32
+ end
@@ -0,0 +1,30 @@
1
+ Eye.app("int") do
2
+ working_dir File.join(File.dirname(__FILE__), %w{.. .. example})
3
+ stdall "shlak.log"
4
+
5
+ group "samples" do
6
+ process("sample1") do
7
+ pid_file "1.pid"
8
+ start_command "ruby sample.rb -L lock1.lock"
9
+ daemonize true
10
+ end
11
+
12
+ process("sample2") do
13
+ pid_file "2.pid"
14
+ start_command "ruby sample.rb -d --pid 2.pid --log shlak.log -L lock2.lock"
15
+ checks :memory, :below => 300.megabytes
16
+ end
17
+ end
18
+
19
+ process("forking") do
20
+ pid_file "forking.pid"
21
+ start_command "ruby forking.rb start"
22
+ stop_command "ruby forking.rb stop"
23
+
24
+ monitor_children do
25
+ childs_update_period 5.seconds
26
+ restart_command "kill -2 {{PID}}"
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1,32 @@
1
+ Eye.app("int") do
2
+ stop_on_delete true # !!!
3
+
4
+ working_dir File.join(File.dirname(__FILE__), %w{.. .. example})
5
+ stdall "shlak.log"
6
+
7
+ group "samples" do
8
+ process("sample1") do
9
+ pid_file "1.pid"
10
+ start_command "ruby sample.rb"
11
+ daemonize true
12
+ end
13
+
14
+ process("sample2") do
15
+ pid_file "2.pid"
16
+ start_command "ruby sample.rb -d --pid 2.pid --log shlak.log"
17
+ checks :memory, :below => 300.megabytes
18
+ end
19
+ end
20
+
21
+ process("forking") do
22
+ pid_file "forking.pid"
23
+ start_command "ruby forking.rb start"
24
+ stop_command "ruby forking.rb stop"
25
+
26
+ monitor_children do
27
+ childs_update_period 5.seconds
28
+ restart_command "kill -2 {{PID}}"
29
+ end
30
+ end
31
+
32
+ end
@@ -0,0 +1,27 @@
1
+ Eye.app("int") do
2
+ stop_on_delete true # !!!
3
+
4
+ working_dir File.join(File.dirname(__FILE__), %w{.. .. example})
5
+ stdall "shlak.log"
6
+
7
+ group "samples" do
8
+ process("sample1") do
9
+ pid_file "1.pid"
10
+ start_command "ruby sample.rb"
11
+ daemonize true
12
+ end
13
+
14
+ process("sample2") do
15
+ pid_file "2.pid"
16
+ start_command "ruby sample.rb -d --pid 2.pid --log shlak.log"
17
+ checks :memory, :below => 300.megabytes
18
+ end
19
+
20
+ process("sample3") do
21
+ pid_file "3.pid"
22
+ start_command "ruby sample.rb"
23
+ daemonize true
24
+ end
25
+ end
26
+
27
+ end
@@ -0,0 +1,32 @@
1
+ Eye.app("int") do
2
+ stop_on_delete true # !!!
3
+
4
+ working_dir File.join(File.dirname(__FILE__), %w{.. .. example})
5
+ stdall "shlak.log"
6
+
7
+ group "samples" do
8
+ process("sample1_") do
9
+ pid_file "1.pid"
10
+ start_command "ruby sample.rb"
11
+ daemonize true
12
+ end
13
+
14
+ process("sample2_") do
15
+ pid_file "2.pid"
16
+ start_command "ruby sample.rb -d --pid 2.pid --log shlak.log"
17
+ checks :memory, :below => 300.megabytes
18
+ end
19
+ end
20
+
21
+ process("forking") do
22
+ pid_file "forking.pid"
23
+ start_command "ruby forking.rb start"
24
+ stop_command "ruby forking.rb stop"
25
+
26
+ monitor_children do
27
+ childs_update_period 5.seconds
28
+ restart_command "kill -2 {{PID}}"
29
+ end
30
+ end
31
+
32
+ end
@@ -0,0 +1,25 @@
1
+ Eye.application "app1" do
2
+ working_dir "/tmp"
3
+
4
+ group "gr1" do
5
+ process("p1"){ pid_file "app1-gr1-p1.pid" }
6
+ process("p2"){ pid_file "app1-gr1-p2.pid" }
7
+ end
8
+
9
+ group "gr2" do
10
+ chain :grace => 0.5.seconds
11
+ process("q3"){ pid_file "app1-gr2-q3.pid" }
12
+ end
13
+
14
+ process("g4"){ pid_file "app1-g4.pid" }
15
+ process("g5"){ pid_file "app1-g5.pid" }
16
+
17
+ end
18
+
19
+ Eye.application "app2" do
20
+ working_dir "/tmp"
21
+
22
+ process "z1" do
23
+ pid_file "app2-z1.pid"
24
+ end
25
+ end
@@ -0,0 +1,7 @@
1
+ Eye.application "app3" do
2
+ working_dir "/tmp"
3
+
4
+ process "e1" do
5
+ pid_file "app3-e1.pid"
6
+ end
7
+ end
@@ -0,0 +1,13 @@
1
+ Eye.application "app1" do
2
+
3
+ process "server_1" do
4
+ working_dir "/tmp"
5
+ pid_file "server.pid"
6
+ end
7
+
8
+ process "server_2" do
9
+ working_dir "/tmp2"
10
+ pid_file "server.pid"
11
+ end
12
+
13
+ end
@@ -0,0 +1,7 @@
1
+ Eye.application "app4" do
2
+ working_dir "/tmp"
3
+
4
+ process "e1" do
5
+ pid_file "app3-e1.pid"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ Eye.application "app3" do
2
+ working_dir "/tmp"
3
+
4
+ group("wow") {
5
+ process "e1" do
6
+ daemonize true
7
+ pid_file "app3-e1.pid"
8
+ end
9
+ }
10
+ end
@@ -0,0 +1,7 @@
1
+ Eye.application "app4" do
2
+ working_dir "/tmp"
3
+
4
+ process "e1" do
5
+ pid_file "app3-e1.pid"
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ Eye.application "app1" do
2
+ working_dir "/tmp"
3
+
4
+ group "gr1" do
5
+ process("p1"){ pid_file "app1-gr1-p1.pid" }
6
+ end
7
+
8
+ end
@@ -0,0 +1,17 @@
1
+ Eye.application "app1" do
2
+ working_dir "/tmp"
3
+
4
+ group "gr2" do
5
+ chain :grace => 1.0.seconds
6
+ process("p1"){ pid_file "app1-gr1-p1.pid" }
7
+ process("p2"){ pid_file "app1-gr1-p2.pid" }
8
+ end
9
+
10
+ group "gr1" do
11
+ process("q3"){ pid_file "app1-gr2-q3.pid" }
12
+ end
13
+
14
+ process("g4"){ pid_file "app1-g4.pid" }
15
+ process("g5"){ pid_file "app1-g5.pid" }
16
+
17
+ end
@@ -0,0 +1,36 @@
1
+ Eye.application "app1" do
2
+ working_dir "/tmp"
3
+
4
+ group "gr1" do
5
+ process("p1"){ pid_file "app1-gr1-p1.pid" }
6
+ process("p2"){ pid_file "app1-gr1-p2.pid" }
7
+ end
8
+
9
+ group "gr2" do
10
+ chain :grace => 5.seconds
11
+ process("q3"){ pid_file "app1-gr2-q3.pid" }
12
+ end
13
+
14
+ process("g4"){ pid_file "app1-g4.pid" }
15
+ process("g5"){ pid_file "app1-g5.pid" }
16
+ process("gr2and"){ pid_file "app1-gr2and.pid" }
17
+
18
+ end
19
+
20
+ Eye.application "app2" do
21
+ working_dir "/tmp"
22
+
23
+ process "z1" do
24
+ pid_file "app2-z1.pid"
25
+ end
26
+
27
+ group "gr1" do
28
+ process "z2" do
29
+ pid_file "app2-gr1-z2.pid"
30
+ end
31
+
32
+ process "gr1and" do
33
+ pid_file "app2-gr1-gr1and.pid"
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,15 @@
1
+ Eye.application "app1" do
2
+
3
+ group "p1" do
4
+ process "server" do
5
+ pid_file "server1.pid"
6
+ end
7
+ end
8
+
9
+ group "p2" do
10
+ process "server" do
11
+ pid_file "server2.pid"
12
+ end
13
+ end
14
+
15
+ end
@@ -0,0 +1,5 @@
1
+ #bad logger
2
+ Eye.logger = "/asd/fasd/fas/df/asd/fas/df/d"
3
+
4
+ Eye.application "app1" do
5
+ end
@@ -0,0 +1,10 @@
1
+ Eye.application "app3" do
2
+ working_diasdf asdf asdf asd fasd fr "/tmp"
3
+
4
+ group("wow") {
5
+ process "e1" do
6
+ daemonize true
7
+ pid_file "app3-e1.pid"
8
+ end
9
+ }
10
+ end
@@ -0,0 +1,7 @@
1
+ Eye.application "app4" do
2
+ working_dir "/tmp"
3
+
4
+ process "e1" do
5
+ pid_file "app3-e1.pid"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ Eye.application "app3" do
2
+ working_dir "/tmp"
3
+
4
+ group("wow") {
5
+ process "e1" do
6
+ daemonize true
7
+ pid_file "app3-e1.pid"
8
+ end
9
+ }
10
+ end
@@ -0,0 +1,7 @@
1
+ Eye.application "app4" do
2
+ working_dir "/tmp"
3
+
4
+ process "e2" do
5
+ pid_file "app4-e2.pid"
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ Eye.application "app1" do
2
+ group "gr1" do
3
+ process("p1"){ pid_file "app1-gr1-p1.pid" }
4
+ process("p2"){ pid_file "app1-gr1-p2.pid" }
5
+ end
6
+
7
+ process("p0"){ pid_file "app1-p0.pid" }
8
+ end
@@ -0,0 +1,13 @@
1
+ Eye.application "app1" do
2
+ group "gr1" do
3
+ process("p2"){ pid_file "app1-gr1-p2.pid" }
4
+ process("p3"){ pid_file "app1-gr1-p3.pid" }
5
+ end
6
+
7
+ group "gr2" do
8
+ process("p4"){ pid_file "app1-gr2-p4.pid" }
9
+ process("p5"){ pid_file "app1-gr2-p5.pid" }
10
+ end
11
+
12
+ process("p0-1"){ pid_file "app1-p0-1.pid" }
13
+ end
@@ -0,0 +1,26 @@
1
+ Eye.logger = "/tmp/1.log"
2
+
3
+ Eye.application "app1" do
4
+ working_dir "/tmp"
5
+
6
+ group "gr1" do
7
+ process("p1"){ pid_file "app1-gr1-p1.pid" }
8
+ process("p2"){ pid_file "app1-gr1-p2.pid" }
9
+ end
10
+
11
+ group "gr2" do
12
+ process("q3"){ pid_file "app1-gr2-q3.pid" }
13
+ end
14
+
15
+ process("g4"){ pid_file "app1-g4.pid" }
16
+ process("g5"){ pid_file "app1-g5.pid" }
17
+
18
+ end
19
+
20
+ Eye.application "app2" do
21
+ working_dir "/tmp"
22
+
23
+ process "z1" do
24
+ pid_file "app2-z1.pid"
25
+ end
26
+ end