diff options
Diffstat (limited to 'tests/plugins/service/configs')
-rw-r--r-- | tests/plugins/service/configs/.rr-service-error.yaml | 16 | ||||
-rw-r--r-- | tests/plugins/service/configs/.rr-service-init.yaml | 8 | ||||
-rw-r--r-- | tests/plugins/service/configs/.rr-service-restarts.yaml | 16 |
3 files changed, 36 insertions, 4 deletions
diff --git a/tests/plugins/service/configs/.rr-service-error.yaml b/tests/plugins/service/configs/.rr-service-error.yaml new file mode 100644 index 00000000..3b0f1eb9 --- /dev/null +++ b/tests/plugins/service/configs/.rr-service-error.yaml @@ -0,0 +1,16 @@ +service: + some_service_1: + command: "php test_files/loopo.php" + process_num: 1 + exec_timeout: 5s # s,m,h (seconds, minutes, hours) + remain_after_exit: true + restart_sec: 1 + +logs: + level: info + mode: raw + +endure: + grace_period: 120s + print_graph: false + log_level: error diff --git a/tests/plugins/service/configs/.rr-service-init.yaml b/tests/plugins/service/configs/.rr-service-init.yaml index 1b9cf754..e32f2eda 100644 --- a/tests/plugins/service/configs/.rr-service-init.yaml +++ b/tests/plugins/service/configs/.rr-service-init.yaml @@ -2,13 +2,13 @@ service: some_service_1: command: "php test_files/loop.php" process_num: 1 - exec_timeout: 5s - restart_after_exit: true - restart_delay: 1s + exec_timeout: 5s # s,m,h (seconds, minutes, hours) + remain_after_exit: true + restart_sec: 1 some_service_2: command: "test_files/test_binary" process_num: 1 - restart_after_exit: true + remain_after_exit: true restart_delay: 1s exec_timeout: 5s diff --git a/tests/plugins/service/configs/.rr-service-restarts.yaml b/tests/plugins/service/configs/.rr-service-restarts.yaml new file mode 100644 index 00000000..9095a92f --- /dev/null +++ b/tests/plugins/service/configs/.rr-service-restarts.yaml @@ -0,0 +1,16 @@ +service: + some_service_2: + command: "test_files/test_binary" + process_num: 1 + remain_after_exit: true + restart_delay: 1s + exec_timeout: 1s + +logs: + level: info + mode: raw + +endure: + grace_period: 120s + print_graph: false + log_level: error |