<?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 Re: Access vFiler network stats via SDK? in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78342#M1073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is possible, that you access the vFiler by using the SDK. In Perl f.e. NaServer::set_vfiler is responsible for that. I used something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my $s = NaServer-&amp;gt;new( $hostname, $ontapi_major_version, $ontapi_minor_version);&lt;/P&gt;&lt;P&gt;$s-&amp;gt;set_vfiler($vfiler_name);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll find further information in the manage-ontap-sdk - it's worth the download: &lt;A _jive_internal="true" href="https://community.netapp.com/docs/DOC-1152" title="https://communities.netapp.com/docs/DOC-1152" target="_blank"&gt;https://communities.netapp.com/docs/DOC-1152&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used it to develop several Nagios Plugins for NetApp, which are capable of checking vFilers thanks to this API. See &lt;A href="http://netapp-monitoring.info/en/" target="_blank"&gt;http://netapp-monitoring.info/en/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, Ingo Lantschner&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Jan 2012 08:47:55 GMT</pubDate>
    <dc:creator>ingo_lantschner</dc:creator>
    <dc:date>2012-01-31T08:47:55Z</dc:date>
    <item>
      <title>Access vFiler network stats via SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78333#M1071</link>
      <description>&lt;P&gt;Is there an interface that can provide access to network statistics for a vFiler?&amp;nbsp; There is no SNMP access to vFiler statistics, so I'm trying to determine if there is an alternative means to get that information that could then be passed to a monitoring tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;Ken&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:39:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78333#M1071</guid>
      <dc:creator>jeras</dc:creator>
      <dc:date>2025-06-05T06:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Access vFiler network stats via SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78338#M1072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Collecting network interface level performance data through a vFiler will not be possible as vFilers do not have access to interfaces; only the IPs they are granted upon creation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There might be alternate ways to accomplish what you want. Some questions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Is the physical filer containing the vFilers reachable? Do you have credentials?&lt;/P&gt;&lt;P&gt;2) If connecting to the hosting filer is possible and you want to breakout utilization per vFiler, are they each using distinct interfaces, vifs or vlans?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-ryan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2011 21:01:59 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78338#M1072</guid>
      <dc:creator>ryanc</dc:creator>
      <dc:date>2011-12-22T21:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Access vFiler network stats via SDK?</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78342#M1073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is possible, that you access the vFiler by using the SDK. In Perl f.e. NaServer::set_vfiler is responsible for that. I used something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my $s = NaServer-&amp;gt;new( $hostname, $ontapi_major_version, $ontapi_minor_version);&lt;/P&gt;&lt;P&gt;$s-&amp;gt;set_vfiler($vfiler_name);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll find further information in the manage-ontap-sdk - it's worth the download: &lt;A _jive_internal="true" href="https://community.netapp.com/docs/DOC-1152" title="https://communities.netapp.com/docs/DOC-1152" target="_blank"&gt;https://communities.netapp.com/docs/DOC-1152&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used it to develop several Nagios Plugins for NetApp, which are capable of checking vFilers thanks to this API. See &lt;A href="http://netapp-monitoring.info/en/" target="_blank"&gt;http://netapp-monitoring.info/en/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, Ingo Lantschner&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2012 08:47:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Access-vFiler-network-stats-via-SDK/m-p/78342#M1073</guid>
      <dc:creator>ingo_lantschner</dc:creator>
      <dc:date>2012-01-31T08:47:55Z</dc:date>
    </item>
  </channel>
</rss>

