Configuring Disk Monitoring

Version 1 by Robin Shen
on Dec 04, 2014 05:19.


 
compared with
Current by Robin Shen
on Dec 18, 2014 13:03.


 
Key
These lines were removed. This word was removed.
These lines were added. This word was added.

View page history


There are 0 changes. View first change.

 By default, QuickBuild will only monitor the disk where node storage directory is on. You may want to specify the disks yourself, so you need:
  
  
 # Go to Administration page
 # Select Plugin Management tab
 # Configure Grid Measurement Plugin
 # In Monitor Disk field, input something like:
 {code}
 ${node.getAttribute("monitorDisks")}
 {code}
 # Go to Grid page, and select Active Nodes tab
 # Choose the nodes which you want
 # Choose User Attribute tab
 # Input something like:
 {code}
 monitorDisks=C:/,D:/,E:/
 {code}
  
 Since 5.0.9, you may also use match pattern to specify your monitoring disks, for example:
 *\** or *\*\** to monitor all disks/partitions on your agents/nodes, or use ant style pattern to include or exclude your disks:
  
 {code}
 **,-/dev
 {code}
  
 The above pattern means you want to monitor all partitions except _/dev_.
  
 Please refer to [File Pattern Reference] for more about how to specify your path pattern.