This documentation relates to QuickBuild 5.0.x
Select here if you are using a different version

Configuring Monitoring Disks

Version 8 by Steve Luo
on Feb 27, 2013 15:54.


compared with
Current by Steve Luo
on Feb 27, 2013 15:54.


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

View page history


There are 1 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 like:
  *\** 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.