magic_recipes_two 0.0.75 → 0.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzdmZGRkYjdmMzY0OTIyM2ZkYjA5YzllMWU1NzQ5ODE5OTgxNmJlNw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjA0OGI5ZjJmOGQ5ZmRhZjMyZWM4MDQ2MWEyYWMzNjc3ZWI0NWQ0MA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YzFlZDVhMThkYTUwOTRkMTU3NDcwY2U4MTM3ODNlYjg2Yjg5MTMyODk5Zjc3
|
10
|
+
MjQwY2IwYzI0Yzc4ODY1ZjhlYzBmYWMzZDViOGRkMzJkM2YyMmJhM2NmNDQz
|
11
|
+
MGVhMGExNzA1YmJkODk2ODI1MzU2NDFmOGY3NzNhZDM2Mzc2MGQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzU2NDI4Y2JmMzc3OWIxNjBhOTlmYjI5MjE1NWNmOGFkMWU1NDMyOWQ3ZDYx
|
14
|
+
M2RlZmRjMDk5MzNhZmEzZjg2YjQyZTkwYzMxNmU5ZTM4MDdlY2FiMDI2ODA5
|
15
|
+
M2FiY2Y0YTNlNWQzZjBjYzBjMWU2NjQwNWVlOWU2ZmM2ZWYxNTg=
|
@@ -4,7 +4,7 @@ include Capistrano::MagicRecipes::BaseHelpers
|
|
4
4
|
namespace :load do
|
5
5
|
task :defaults do
|
6
6
|
set :monit_roles, -> { :web }
|
7
|
-
set :monit_interval, -> {
|
7
|
+
set :monit_interval, -> { 60 }
|
8
8
|
set :monit_bin, -> { '/usr/bin/monit' }
|
9
9
|
## Monit default: '/var/log/monit.log'
|
10
10
|
set :monit_logfile, -> { "#{shared_path}/log/monit.log" }
|
@@ -27,8 +27,8 @@
|
|
27
27
|
%>
|
28
28
|
check process <%= sidekiq_service_name(idx) %>
|
29
29
|
with pidfile "<%= pid_file %>"
|
30
|
-
start program = <%= monit_app_prefixed("sidekiq #{ args.join(" ") }") %> with timeout <%= fetch(:monit_sidekiq_timeout_sec, 90) %> seconds
|
31
|
-
stop program = <%= monit_app_prefixed("sidekiqctl stop #{ pid_file }") %> with timeout <%= fetch(:monit_sidekiq_timeout_sec, 90) %> seconds
|
30
|
+
start program = "<%= monit_app_prefixed("sidekiq #{ args.join(" ") }") %>" with timeout <%= fetch(:monit_sidekiq_timeout_sec, 90) %> seconds
|
31
|
+
stop program = "<%= monit_app_prefixed("sidekiqctl stop #{ pid_file }") %>" with timeout <%= fetch(:monit_sidekiq_timeout_sec, 90) %> seconds
|
32
32
|
group sidekiq-<%= fetch(:sidekiq_monit_group, fetch(:application)) %>-<%= fetch(:stage) %>
|
33
33
|
# if does not exist then start # (default)
|
34
34
|
if totalmem > <%= ( fetch( :monit_sidekiq_totalmem_mb, 300 ).to_i * 0.75 ).to_i %> MB then alert
|
@@ -2,8 +2,8 @@
|
|
2
2
|
<% fetch(:app_instances, 1).times do |n| %>
|
3
3
|
check process <%= fetch(:application) %>_<%= fetch(:stage) %>_thin_<%= n %> with pidfile <%= deploy_to %>/shared/pids/thin_<%= fetch(:application) %>_<%= fetch(:stage) %>.<%= n %>.pid
|
4
4
|
group thin-<%= fetch(:application) %>-<%= fetch(:stage) %>
|
5
|
-
start program = <%= monit_app_prefixed("thin start -C config/thin_app_#{ fetch(:stage) }.yml -o #{ n }") %>
|
6
|
-
stop program = <%= monit_app_prefixed("thin stop -C config/thin_app_#{ fetch(:stage) }.yml -o #{ n }") %>
|
5
|
+
start program = "<%= monit_app_prefixed("thin start -C config/thin_app_#{ fetch(:stage) }.yml -o #{ n }") %>"
|
6
|
+
stop program = "<%= monit_app_prefixed("thin stop -C config/thin_app_#{ fetch(:stage) }.yml -o #{ n }") %>"
|
7
7
|
# if does not exist then start # (default)
|
8
8
|
# if does not exist for 3 cycles then alert
|
9
9
|
if 3 restarts within 5 cycles then alert
|