<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Syntax for obtaining snap delta change rate on all volumes on a 7-mode? in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Syntax-for-obtaining-snap-delta-change-rate-on-all-volumes-on-a-7-mode/m-p/108587#M4465</link>
    <description>&lt;P&gt;Hi Communities,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not a programmer ... and do not really have programming skills. &amp;nbsp; However, I am reaching out to communities because we need the syntax to get the change rate of all volumes on a 7-mode controller pair. &amp;nbsp; &amp;nbsp;What would be the "for each" syntax so that we can run one command and get all the snap deltas for all the volumes in the HA pair?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;get-nasnapshotdelta command ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you communities for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rick&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 23:32:09 GMT</pubDate>
    <dc:creator>rtriana</dc:creator>
    <dc:date>2025-06-04T23:32:09Z</dc:date>
    <item>
      <title>Syntax for obtaining snap delta change rate on all volumes on a 7-mode?</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Syntax-for-obtaining-snap-delta-change-rate-on-all-volumes-on-a-7-mode/m-p/108587#M4465</link>
      <description>&lt;P&gt;Hi Communities,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not a programmer ... and do not really have programming skills. &amp;nbsp; However, I am reaching out to communities because we need the syntax to get the change rate of all volumes on a 7-mode controller pair. &amp;nbsp; &amp;nbsp;What would be the "for each" syntax so that we can run one command and get all the snap deltas for all the volumes in the HA pair?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;get-nasnapshotdelta command ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you communities for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rick&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 23:32:09 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Syntax-for-obtaining-snap-delta-change-rate-on-all-volumes-on-a-7-mode/m-p/108587#M4465</guid>
      <dc:creator>rtriana</dc:creator>
      <dc:date>2025-06-04T23:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax for obtaining snap delta change rate on all volumes on a 7-mode?</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Syntax-for-obtaining-snap-delta-change-rate-on-all-volumes-on-a-7-mode/m-p/108591#M4466</link>
      <description>&lt;P&gt;Hello Rick,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following script ought to do the trick.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$vols = Get-NaVol
Write-Host "Volume`tSnapshot`tConsumedSize`tElapsedTime"
foreach ($vol in $vols) {
	$snaps = Get-NaSnapshot $vol
	foreach ($snap in $snaps) {
		$res = Get-NaSnapshotDelta -TargetName $vol -SnapName1 $snap
		Write-Host $vol `t $snap `t $res.ConsumedSize `t $res.ElapsedTimeTS
	}
}&lt;/PRE&gt;&lt;P&gt;The output of the script would be&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PS C:\Users\aparajir&amp;gt; &amp;amp; '..\SnapshotDelta.ps1'
Volume  Snapshot        ConsumedSize    ElapsedTime
vol0     hourly.0        8716288         02:59:14
vol0     hourly.1        42876928        14:58:49
vol0     hourly.2        54444032        18:59:24
vol0     hourly.3        65953792        22:58:54
vol0     hourly.4        77496320        1.02:59:26
vol0     hourly.5        111915008       1.14:58:59
vol0     nightly.0       31633408        10:59:25
vol0     nightly.1       100524032       1.10:59:31
vol1     hourly.0        61440   02:59:26
vol1     hourly.1        200704          14:59:02
vol1     hourly.2        270336          18:59:36
vol1     hourly.3        339968          22:59:06
vol1     hourly.4        409600          1.02:59:39
vol1     hourly.5        548864          1.14:59:11
vol1     nightly.0       131072          10:59:37
vol1     nightly.1       479232          1.10:59:44&lt;/PRE&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Aparajita&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 15:14:52 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Syntax-for-obtaining-snap-delta-change-rate-on-all-volumes-on-a-7-mode/m-p/108591#M4466</guid>
      <dc:creator>Aparajita</dc:creator>
      <dc:date>2015-08-13T15:14:52Z</dc:date>
    </item>
  </channel>
</rss>

