I want to get a warning when disk space is filling with a "criminal" rate. I don't like the disk free in % or in MB free - I want to try something new.
My suggestion for a trigger - which I need some help to develop is the following:
(24H ago(disk free) - Now(disk free) ) > Now(disk free) = warning
This should give me a warning if the last 2 days accumulated growth will actually fill the remaining disk space - assuming the fill rate continues.
Can somebody help me write the trigger string so I can give it a try - THX
A naive way off doing this would be:
{Template_Windows:vfs.fs.size[c:,free].last(0,172800) - vfs.fs.size[c:,free].last(0)}>vfs.fs.size[c:,free].last(0)
My suggestion for a trigger - which I need some help to develop is the following:
(24H ago(disk free) - Now(disk free) ) > Now(disk free) = warning
This should give me a warning if the last 2 days accumulated growth will actually fill the remaining disk space - assuming the fill rate continues.
Can somebody help me write the trigger string so I can give it a try - THX
A naive way off doing this would be:
{Template_Windows:vfs.fs.size[c:,free].last(0,172800) - vfs.fs.size[c:,free].last(0)}>vfs.fs.size[c:,free].last(0)
Comment