From owner-freebsd-questions@FreeBSD.ORG Mon Jun 30 10:44:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEA0D1065671; Mon, 30 Jun 2008 10:44:45 +0000 (UTC) (envelope-from jhary@unsane.co.uk) Received: from unsane.co.uk (unsane-pt.tunnel.tserv5.lon1.ipv6.he.net [IPv6:2001:470:1f08:110::2]) by mx1.freebsd.org (Postfix) with ESMTP id 538378FC1E; Mon, 30 Jun 2008 10:44:45 +0000 (UTC) (envelope-from jhary@unsane.co.uk) Received: from prawn.unsane.co.uk (150.117-84-212.staticip.namesco.net [212.84.117.150]) (authenticated bits=0) by unsane.co.uk (8.14.0/8.14.0) with ESMTP id m5UAiRqv029818 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 30 Jun 2008 11:44:28 +0100 (BST) (envelope-from jhary@unsane.co.uk) Message-ID: <4868B914.40308@unsane.co.uk> Date: Mon, 30 Jun 2008 11:44:36 +0100 From: Vince Hoffman User-Agent: Thunderbird 2.0.0.14 (X11/20080609) MIME-Version: 1.0 To: Kris Kennaway References: <3b93bd110806290517k2050b114g984b9e4186a3beda@mail.gmail.com> <4867F16D.3000700@unsane.co.uk> <4868B070.5090004@FreeBSD.org> In-Reply-To: <4868B070.5090004@FreeBSD.org> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: "Diego F. Arias R." , freebsd-questions@freebsd.org Subject: Re: Problem With ZFS script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2008 10:44:45 -0000 Kris Kennaway wrote: > Vince Hoffman wrote: >> ---------------------- >> #!/bin/sh - >> >> TEXT=$(kldstat | tr a-f A-F | \ >> awk 'BEGIN {print "ibase=16"}; NR > 1 {print $4}'\ >> | bc | awk '{a+=$1}; END {print a}') >> DATA=$(vmstat -m | sed 's/K//' | awk '{a+=$3}; END {print a*1024}') >> TOTAL=$(echo "$DATA $TEXT" | awk '{print $1+$2}') >> >> echo "TEXT=$TEXT, $(echo $TEXT | awk '{print $1/1048576 " MB"}')" >> echo "DATA=$DATA, $(echo $DATA | awk '{print $1/1048576 " MB"}')" >> echo "TOTAL=$TOTAL, $(echo $TOTAL | awk '{print $1/1048576 " MB"}')" >> ------------------------------------------------------ >> Looks like the wiki stripped some formatting. > > I still don't know that this is doing anything meaningful in the context > of ZFS memory use. > I understood it to just be showing a summary of kernel memory utilization, no specific zfs stuff (which I guess could be got from vmstat -z although I dont understand those statistics well enough to do this myself.) Semi useful in a peripheral way maybe. Vince > Kris > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org"