From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keir Fraser Subject: Re: Monitoring I/O rate for each VMs Date: Mon, 27 Nov 2006 08:12:07 +0000 Message-ID: References: <456A0BD8.8000402@goirand.fr> Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <456A0BD8.8000402@goirand.fr> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Thomas Goirand , xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org On 26/11/06 9:49 pm, "Thomas Goirand" wrote: > It's nice already, but I'd like to add the I/O rate of each of my VMs as > well, to know which of them is taking too much bandwidth or hard drives. > Does one of you know where to get this information? There are per-vbd read and write stats under /sys//statistics/{rd_req,wr_req} Unfortunately these count requests rather than bytes served. This may be what you want though, as #requests should be proportional to the number of expensive disc operations (seeking and settling). Long contiguous requests are not proportionally more expensive than short ones. -- Keir