Please enter search query.
Search <book_title>...
Enterprise Vault™ Monitoring Enterprise Vault
Last Published:
2021-03-23
Product(s):
Enterprise Vault (14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0, 11.0.1, 11.0)
- Monitoring Enterprise Vault
- Enterprise Vault locations
- Enterprise Vault Directory database
- Vault Store Group fingerprint database
- Vault Store database
- Vault Store
- Vault Store partitions
- Index locations
- IIS Service
- Enterprise Vault services
- Monitoring Enterprise Vault tasks
- Monitoring Enterprise Vault event logs
- Enterprise Vault performance counters
Directory database data file backup
Purpose
Determine the time since the most recent back up.
Suggested frequency
Every 4 hours
Suggested thresholds
Warning alert: 48 hours
Critical alert: 72 hours
Method 1 (preferred)
Use the Hours since last backup performance counter to determine the number of days since the last backup.
\Enterprise Vault Database Files\Hours since last backup Hours since last backup of the database file
Method 2
Use the Get-EVDatabaseFileInfo cmdlet to determine the number of hours since the last backup:
Get-EVDatabaseFileInfo -databasetype directory
Sample output
Typical output: DatabaseName : EnterpriseVaultDirectory LogicalFileName : VaultDev70 PhysicalFileName : D:\SQL Server\MSSQL.1\MSSQL\DATA\VaultDevdb.mdf FileType : Data TotalQuotaGBytesUsed : TotalQuotaGBytesAvailable : TotalQuotaGBytesFree : LastBackupDate : HoursSinceLastBackup : 25
Note:
TotalQuotaGBytesUsed, TotalQuotaGBytesAvailable, TotalQuotaGBytesFree are not available if the SQL Server version is earlier than SQL Server 2008 R2 SP1.
Example
To determine the number of hours since the last backup:
(Get-EVDatabaseFileInfo -databasetype directory) | where ` $_.filetype -eq "data"}).hourssincelastbackup 25