是否可以链接规则条件,例如
现在我有一个文件系统磁盘使用情况检查
check filesystem test-/ with path /
if space usage > 80% then alert
如果我想以80%,85%,90%,95%的速度发出警报,则需要编写4条差异行,
check filesystem test-/ with path /
if space usage > 80% then alert
if space usage > 85% then alert
etc..
是否可以将这些条件链接成1行,也许是这样?
check filesystem test-/ with path /
if space usage > 80%, 90%, 95% then alert
谢谢。