diff options
author | David Walter Seikel | 2016-11-08 22:17:09 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-08 22:17:09 +1000 |
commit | 3c279d6c3b66a7f5ad49e16180b69ffa94513dc5 (patch) | |
tree | 796f28d91cbc7339d8c5202c429bad07b4e27cd7 /config/sim01/opensim-monit.conf | |
parent | New README and TODO I forgot to commit before. (diff) | |
download | opensim-SC-3c279d6c3b66a7f5ad49e16180b69ffa94513dc5.zip opensim-SC-3c279d6c3b66a7f5ad49e16180b69ffa94513dc5.tar.gz opensim-SC-3c279d6c3b66a7f5ad49e16180b69ffa94513dc5.tar.bz2 opensim-SC-3c279d6c3b66a7f5ad49e16180b69ffa94513dc5.tar.xz |
Installation script.
Diffstat (limited to '')
-rw-r--r-- | config/sim01/opensim-monit.conf | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/config/sim01/opensim-monit.conf b/config/sim01/opensim-monit.conf new file mode 100644 index 0000000..9d66ce6 --- /dev/null +++ b/config/sim01/opensim-monit.conf | |||
@@ -0,0 +1,29 @@ | |||
1 | # manage the OpenSim process for Your Sim | ||
2 | # | ||
3 | # usage: | ||
4 | # monit start your_sim | ||
5 | # monit stop your_sim | ||
6 | # monit restart your_sim | ||
7 | # | ||
8 | # see 'daemon' setting in /etc/monit/monitrc for the cycle length. | ||
9 | # on ubuntu/debian, this is overridden by the CHECK_INTERVALS var in | ||
10 | # /etc/default/monit . the below assumes you've set it to 30 seconds. | ||
11 | # | ||
12 | # see ../README for configuration instructions. | ||
13 | # | ||
14 | # Hmmmm, seems that monit changing to a user and running bash -l is different from sudo changing to a user and running bash -l. | ||
15 | # | ||
16 | check process sim01 with pidfile /var/run/opensim/sim01.pid | ||
17 | start program = "/usr/bin/sudo -Hu opensim /bin/bash -lc 'cd /opt/opensim/config/sim01 && /opt/opensim/config/sim01/start-sim -q'" | ||
18 | as uid root and gid root | ||
19 | stop program = "/usr/bin/sudo -Hu opensim /bin/bash -lc 'cd /opt/opensim/config/sim01 && /opt/opensim/config/sim01/stop-sim'" with timeout 600 seconds | ||
20 | if cpu usage > 50% for 4 cycles then restart | ||
21 | if MEMORY usage > 25% for 4 cycles then restart | ||
22 | # if 5 restarts within 5 cycles then timeout | ||
23 | # if failed url http://127.0.0.1:9005/jsonSimStats/ | ||
24 | # and content != '"SimFPS":0.0,' for 4 cycles | ||
25 | # then restart | ||
26 | # if failed url http://127.0.0.1:9008/jsonSimStats/ | ||
27 | # and content == '"SimFPS":' for 4 cycles | ||
28 | # then restart | ||
29 | depends on ROBUST | ||