我想自定义 Monit 的警报信息,以便每当我收到警报时,电子邮件还包含类似命令的输出top
,这样我就能知道可能导致问题的更多详细信息。
有办法吗?文档中没有包含任何相关内容,搜索也没有帮助。
谢谢您的帮助!
答案1
来自 monit wiki 的类似内容怎么样?
# Getting top otput by mail on event
check file myfile with path /tmp/fo.bar
if changed timestamp then exec "/bin/bash -c 'top -bn1 | mail -s top [email protected]'"
关联:http://mmonit.com/wiki/Monit/ConfigurationExamples (滚动到最底部)