Skip to content

Commit

Permalink
Drive Space Alert fix
Browse files Browse the repository at this point in the history
Fix issue alerting on drive space when using MB threshold instead of %.
trimble-oss#1186
  • Loading branch information
DavidWiseman committed Jan 22, 2025
1 parent 0ad73c3 commit 701917b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DBADashDB/Alert/Procedures/DriveSpaceAlert_Upd.sql
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ WITH DeDupe AS (
JOIN dbo.DriveStatus DS ON T.InstanceID = DS.InstanceID
WHERE (DS.Status = 1 OR T.UseCriticalStatus=0)
AND (DS.PctFreeSpace <= (T.Threshold/100.0) OR T.Threshold IS NULL OR T.IsThresholdPercentage=0)
AND (DS.FreeGB >= T.Threshold*1024.0 OR T.IsThresholdPercentage=1 OR T.Threshold IS NULL)
AND (DS.FreeGB <= T.Threshold/1024.0 OR T.IsThresholdPercentage=1 OR T.Threshold IS NULL)
)
INSERT INTO #ExceededThreshold(
InstanceID,
Expand Down

0 comments on commit 701917b

Please sign in to comment.