Skip to main content
Element Software
12.5 and 12.7

ListVolumeStatsByAccount

Contributors netapp-pcarriga

You can use the ListVolumeStatsByAccount method to list high-level volume activity measurements for every account. Values are summed from all volumes owned by the account.

Parameters

This method has the following input parameters:

Name Description Type Default value Required

includeVirtualVolumes

Virtual volumes are included in the response by default. To exclude virtual volumes, set to false.

boolean

true

No

accounts

A list of account IDs for which to return volume statistics. If omitted, statistics for all accounts are returned.

integer array

None

No

Return value

This method has the following return value:

Name

Description

Type

volumeStats

List of volume activity information for each account.Note: The volumeID member is 0 for each entry, as the values represent the summation of all volumes owned by the account.

volumeStats array

Request example

Requests for this method are similar to the following example:

{
"method": "ListVolumeStatsByAccount",
  "params": {"accounts": [3]},
  "id": 1
}

Response example

This method returns a response similar to the following example:

{
  "id": 1,
  "result": {
    "volumeStats": [
      {
        "accountID": 3,
        "nonZeroBlocks": 155040175,
        "readBytes": 3156273328128,
        "readBytesLastSample": 0,
        "readOps": 770574543,
        "readOpsLastSample": 0,
        "samplePeriodMSec": 500,
        "timestamp": "2016-10-17T20:42:26.231661Z",
        "unalignedReads": 0,
        "unalignedWrites": 0,
        "volumeAccessGroups": [],
        "volumeID": 0,
        "volumeSize": 1127428915200,
        "writeBytes": 1051988406272,
        "writeBytesLastSample": 0,
        "writeOps": 256833107,
        "writeOpsLastSample": 0,
        "zeroBlocks": 120211025
      }
    ]
  }
}

New since version

9.6