Associated QTrees
`ontap-index` sourcetype=ontap:qtree source=qtree-list-iter* (volume="$name$") host="$host$" id!=0
| dedup id, qtree, host
| sort host, volume, qtree
| rename host AS "Host",
volume AS "Volume",
id AS "ID",
qtree AS "Qtree",
oplocks AS "Oplocks",
status AS "Status",
security-style AS "Security Style"
| table "Host",
"Volume",
"ID",
"Qtree",
"Oplocks",
"Status",
"Security Style"
-24h@hnow
Associated LUNs
`ontap-index` sourcetype=ontap:lun (source=lun-get-iter volume="$name$") OR
(source=lun-list-info path="/vol/$name$/*") host="$host$"
| dedup serial-number,host
| rename size-used as used
| sort host, path
| eval "size_total"=`BytesToGigaBytes(size)`
| eval "size_used"=`BytesToGigaBytes(used)`
| rename
host AS "Host",
path AS "Path",
serial-number AS "Serial Number",
size_total AS "Total Size (GB)",
size_used AS "Used Size (GB)"
| table
"Host",
"Path",
"Serial Number",
"Total Size (GB)",
"Used Size (GB)"
-24h@hnow
| savedsearch "accel_volume_latency_rate"
| search host="$host$" instance_name="$name$"
| timechart
first(avg_latency_average) as avg_latency_average
first(other_latency_average) as other_latency_average
first(write_latency_average) as write_latency_average
first(read_latency_average) as read_latency_average
by fullName
Selected Volume Latency (ms)
| savedsearch "accel_volume_data_rates"
| search host="$host$" instance_name="$name$"
| timechart
first(read_data_rate) as read_data_rate
first(write_data_rate) as write_data_rate
by fullName
Data Transfer Rates (B/s)
| savedsearch "accel_volume_iops"
| search host="$host$" instance_name="$name$"
| timechart
first(total_ops_rate) as total_ops_rate
first(write_ops_rate) as write_ops_rate
first(read_ops_rate) as read_ops_rate
first(other_ops_rate) as other_ops_rate
by fullName
IOPS
| savedsearch "accel_volume_block_ops"
| search host="$host$" instance_name="$name$"
| timechart
first(read_blocks_rate) as read_blocks_rate
first(write_blocks_rate) as write_blocks_rate
by fullName
Number of Block Operations Per Second