Quantcast
Channel: THWACK: Message List
Viewing all articles
Browse latest Browse all 20396

Re: volume: the alert says it's down, the web console says... nothing

$
0
0

This would definitely fall in the 'unsupported' category but a simple workaround would be to create a SQL Trigger to show volumes as Down when they are not responding to queries. You can set the Status = 12 (Unknown) if that makes more sense.

 

CREATE TRIGGER [dbo].[volumestatuschange]

  ON [dbo].[Volumes]

  AFTER UPDATE, INSERT

  AS

  IF EXISTS (SELECT * FROM Volumes WHERE VolumeResponding='N' )

  BEGIN UPDATE Volumes SET Status=2 WHERE VolumeResponding='N'

  END


Viewing all articles
Browse latest Browse all 20396

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>