PowerShell Logo Small

Get-NfsStatistics



This is the built-in help made by Microsoft for the command 'Get-NfsStatistics', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets RPC call statistics that an NFS server maintains.

SYNTAX


Get-NfsStatistics [-AsJob [<SwitchParameter>]] [-CimSession <CimSession[]>] [-Name <String[]>] [-Protocol <String[]>] [-ThrottleLimit <Int32>]
[-Version <UInt32[]>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NfsStatistics cmdlet gets remote procedure call (RPC) statistics that a Network File System (NFS) sever maintains for requests served
over the following protocols:

-- Mount v1 protocol
-- Mount v3 protocol
-- NFS v2 protocol
-- NFS v3 protocol
-- NFS v4.1 protocol



<

RELATED LINKS

Reset-NfsStatistics

REMARKS

<

Examples


Example 1: Get all NFS statistics on a local NFS server

PS C:\>Get-NfsStatistics



This command lists all available statistics, including all protocols and versions, on a local NFS server.




Example 2: Get NFS statics for the MOUNT protocol on a local NFS server

PS C:\> Get-NfsStatistics -Protocol "MOUNT"

Name of Statistic Protocol Version Value
----------------- -------- ------- -----
V1_MNT_NULL MOUNT 1 132
V1_MNT_MOUNT MOUNT 1 0
V1_MNT_DUMPMOUNT MOUNT 1 0
V1_MNT_UNMOUNT MOUNT 1 1
V1_MNT_UNMOUNTALL MOUNT 1 0
V1_MNT_EXPORTLIST MOUNT 1 2
V3_MNT_NULL MOUNT 3 15
V3_MNT_MOUNT MOUNT 3 45
V3_MNT_DUMPMOUNT MOUNT 3 0
V3_MNT_UNMOUNT MOUNT 3 0
V3_MNT_UNMOUNTALL MOUNT 3 10
V3_MNT_EXPORTLIST MOUNT 3 22



This command gets call statistics for the Mount protocol only.




Example 3:

PS C:\>Get-NfsStatistics -Protocol "MOUNT" -Version 1



This command gets call statistics for version 1 of the Mount protocol.