Skip to main content

plugin_proval_volume_exhaustion

Purpose

Stores volume exhaustion information from Volume Free Space - Monitor Creation.

Dependencies

Volume Free Space - Monitor Creation

Tables

plugin_proval_volume_exhaustion

ColumnTypeExplanation
ComputerIDINTThe ID of the target computer
DriveLetterVARCHARThe drive letter of the volume
SizeBIGINTThe size of the volume in bytes
SizeRemainingBIGINTThe amount of space remaining in bytes
ExhaustionDateDATETIMEThe date and time that this volume is estimated to run out of space.
TimestampDATETIMEThe last time data was gathered for this volume.

SQL

CREATE TABLE `plugin_proval_volume_exhaustion` (
`ComputerID` INT(11) NOT NULL,
`DriveLetter` VARCHAR(50) NOT NULL COLLATE 'utf8_general_ci',
`Size` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
`SizeRemaining` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
`ExhaustionDate` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`Timestamp` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`ComputerID`, `DriveLetter`) USING BTREE,
CONSTRAINT `FK1_plugin_proval_volume_exhaustion` FOREIGN KEY (`ComputerID`) REFERENCES `computers` (`ComputerID`) ON UPDATE NO ACTION ON DELETE CASCADE
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
;