//
// Some Common Performance Monitoring Scenarios
//
// The WEBREPORT Group
//
// Intended to be used with archive logs to produce summaries, e.g.
//	pmie -v -A 1hour -S @10:00am -T @2:00pm -a somearchive WEBREPORT
// produces hourly summaries for the hours 10am to 2pm
//

delta = 1 hour;		// change to suit, else use -t from the command line

//
// Request rate throughput (requests per second) summaries
//

// you may replace the metric below with any of the other
// web.allservers.requests metrics

request_rate = web.allservers.requests.total;

//
// Data throughput (Kbytes per minute) summaries
//

// you may replace the metric below with any of the other
// web.allservers.bytes metrics

data_rate = web.allservers.bytes.total * 60 / 1024;

