8 years ago
Effective Disk Monitoring
Is it possible to create a disk threshold that aggregates multiple conditions before sending an alert? The scenario I have in mind, is where a disk might be 90% full, which would ordinarily trigge...
- 8 years ago
Hey Nick,
You should be able to do this with a Complex Datapoint and Datapoint Expressions: https://www.logicmonitor.com/support/datasources/creating-managing-datasources/datapoint-expressions/
Something like:if( and( gt(StorageUsed, 90), lt(StorageSize, 5) ), 1, 0)
Then just set an alert threshold if that Complex Datapoint returns 1.
-Michael