Okay anyone have any idea how to do the following:
I'd like to capture what the largest change in storage consumption might be per day on a disk / partition maybe even a system, then determine whether it is possible that the system has less disk space than the largest change in space of the last X number of days.
For example, I may have a data loading script that consumes 1 - 2 GB per day, but as long as I have about 10GB of space left that gives me another 2-3 days to react. If I have less than 1GB free, that means that a job could fail since it is less than the largest amount of data that could be loaded in one day. Ideally, instead of reporting disk space is % free before sounding an alarm, I'd like to report in terms of amount of time left before it is likely that the disk will fill based on past behavior. Does that make sense?
I'm thinking htis may be some combination of a "diff" over the last month or so, but really wasn't sure where to start.
I'd like to capture what the largest change in storage consumption might be per day on a disk / partition maybe even a system, then determine whether it is possible that the system has less disk space than the largest change in space of the last X number of days.
For example, I may have a data loading script that consumes 1 - 2 GB per day, but as long as I have about 10GB of space left that gives me another 2-3 days to react. If I have less than 1GB free, that means that a job could fail since it is less than the largest amount of data that could be loaded in one day. Ideally, instead of reporting disk space is % free before sounding an alarm, I'd like to report in terms of amount of time left before it is likely that the disk will fill based on past behavior. Does that make sense?
I'm thinking htis may be some combination of a "diff" over the last month or so, but really wasn't sure where to start.

Comment