监控 Jetty 并在内存耗尽时自动重启

监控 Jetty 并在内存耗尽时自动重启

如果内存不足,如何监控 Jetty 实例的运行状况并自动重新启动实例?

答案1

我会看看类似的东西监控监视该过程并设置重新启动该过程的内存阈值。

使用监控,你可以有如下语句:

check process jetty
    with pidfile "/var/run/blah...
    start program = "/path/to/start_script"
    stop program = "/path/to/stop_script"
    if mem usage > 95% for 11 cycles then restart

相关内容