Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Netapp: toasters

NFS - network read / write throughput per protocol

 

 

Netapp toasters RSS feed   Index | Next | Previous | View Threaded


steffen.kammerer at brainlab

Oct 29, 2009, 9:37 AM

Post #1 of 5 (2410 views)
Permalink
NFS - network read / write throughput per protocol

Hi there,

is there a possibility to get the read / write throughput in kilobyte per protocol (separated NFS / CIFS) on a filer?

I found only the operations but nothing else.

Thanks and regards,

Steffen


jeremy.page at gilbarco

Oct 29, 2009, 10:01 AM

Post #2 of 5 (2274 views)
Permalink
RE: NFS - network read / write throughput per protocol [In reply to]

Stats show with the -e will let you use expression matching.



stats show -i 15 -e volume:(nfs|vmware:shares):(nfs)



Would report all of the NFS traffic on volumes with vmware or shares in
the name.



There is a ton more it can do, check out the man page for more.

________________________________

From: owner-toasters [at] mathworks [mailto:owner-toasters [at] mathworks]
On Behalf Of Steffen Kammerer
Sent: Thursday, October 29, 2009 12:38 PM
To: toasters [at] mathworks
Subject: NFS - network read / write throughput per protocol



Hi there,



is there a possibility to get the read / write throughput in kilobyte
per protocol (separated NFS / CIFS) on a filer?



I found only the operations but nothing else.



Thanks and regards,



Steffen



Please be advised that this email may contain confidential information.
If you are not the intended recipient, please do not read, copy or
re-transmit this email. If you have received this email in error,
please notify us by email by replying to the sender and by telephone
(call us collect at +1 202-828-0850) and delete this message and any
attachments. Thank you in advance for your cooperation and assistance.

In addition, Danaher and its subsidiaries disclaim that the content of
this email constitutes an offer to enter into, or the acceptance of,
any
contract or agreement or any amendment thereto; provided that the
foregoing disclaimer does not invalidate the binding effect of any
digital or other electronic reproduction of a manual signature that is
included in any attachment to this email.


thelastman at gmail

Oct 29, 2009, 10:12 AM

Post #3 of 5 (2269 views)
Permalink
Re: NFS - network read / write throughput per protocol [In reply to]

I don't see a counter for what you are looking for in 7.3.1.1, but you
could add up all the volume stats for nfs_read_data and nfs_write_data
and cifs_read_data/cifs_write_data. Add that all together, to get the
total nfs throughput / sec and cifs throughput per second.

It sounds like a good RFE for something under system:system:*

-Blake

On Thu, Oct 29, 2009 at 9:37 AM, Steffen Kammerer
<steffen.kammerer [at] brainlab> wrote:
> Hi there,
>
>
>
> is there a possibility to get the read / write throughput in kilobyte per
> protocol (separated NFS / CIFS) on a filer?
>
>
>
> I found only the operations but nothing else.
>
>
>
> Thanks and regards,
>
>
>
> Steffen


thelastman at gmail

Oct 29, 2009, 2:13 PM

Post #4 of 5 (2268 views)
Permalink
Re: NFS - network read / write throughput per protocol [In reply to]

There's no specific counter for bytes / sec per protocol in priv set diag.
For iops and latency's and size histograms, but nothing specific.

-Blake

On Thu, Oct 29, 2009 at 1:54 PM, Maxwell Reid <slinkywizard [at] integra> wrote:
>
> priv set diag or priv set advanced should display additional counters...
>
> ~Max
>
>
> On Oct 29, 2009, at 10:12 AM, Blake Golliher wrote:
>
>> I don't see a counter for what you are looking for in 7.3.1.1, but you
>> could add up all the volume stats for nfs_read_data and nfs_write_data
>> and cifs_read_data/cifs_write_data.  Add that all together, to get the
>> total nfs throughput / sec and cifs throughput per second.
>>
>> It sounds like a good RFE for something under system:system:*
>>
>> -Blake
>>
>> On Thu, Oct 29, 2009 at 9:37 AM, Steffen Kammerer
>> <steffen.kammerer [at] brainlab> wrote:
>>>
>>> Hi there,
>>>
>>>
>>>
>>> is there a possibility to get the read / write throughput in kilobyte per
>>> protocol (separated NFS / CIFS) on a filer?
>>>
>>>
>>>
>>> I found only the operations but nothing else.
>>>
>>>
>>>
>>> Thanks and regards,
>>>
>>>
>>>
>>> Steffen
>
>


samuel.li at netapp

Oct 29, 2009, 7:13 PM

Post #5 of 5 (2267 views)
Permalink
Re: NFS - network read / write throughput per protocol [In reply to]

Steffen,

Here is something I use quite ofter from a unix box. However this is split per volume. If you want the whole system output you need to sdo some maths and add all the volumes together.


(miso:samuell/home/samuell> ssh samuellf820 "priv set diag; stats show -i 1 -r volume " | grep ccase | grep "_data"
volume:ccase:read_data:0b/s
volume:ccase:write_data:0b/s
volume:ccase:nfs_read_data:0b/s <--- NFS read
volume:ccase:nfs_write_data:0b/s <--- NFS write
volume:ccase:cifs_read_data:0b/s <-- cifs
volume:ccase:cifs_write_data:0b/s <-- cifs
volume:ccase:san_read_data:0b/s
volume:ccase:san_write_data:0b/s
volume:ccase:flexcache_read_data:0b/s
volume:ccase:flexcache_write_data:0b/s
volume:ccase:flexcache_send_data:0b/s
volume:ccase:flexcache_receive_data:0b/s

-i = seconds
ccase = volume name in question ( remove grep ccase to get all volumes)

hope it helps


Blake Golliher wrote:
There's no specific counter for bytes / sec per protocol in priv set diag. For iops and latency's and size histograms, but nothing specific. -Blake On Thu, Oct 29, 2009 at 1:54 PM, Maxwell Reid <slinkywizard [at] integra> wrote:
priv set diag or priv set advanced should display additional counters... ~Max On Oct 29, 2009, at 10:12 AM, Blake Golliher wrote:
I don't see a counter for what you are looking for in 7.3.1.1, but you could add up all the volume stats for nfs_read_data and nfs_write_data and cifs_read_data/cifs_write_data. Add that all together, to get the total nfs throughput / sec and cifs throughput per second. It sounds like a good RFE for something under system:system:* -Blake On Thu, Oct 29, 2009 at 9:37 AM, Steffen Kammerer <steffen.kammerer [at] brainlab> wrote:
Hi there, is there a possibility to get the read / write throughput in kilobyte per protocol (separated NFS / CIFS) on a filer? I found only the operations but nothing else. Thanks and regards, Steffen

Netapp toasters RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.