NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

ONTAP Discussions

How to check status of Vscanner services with WFA

Nishith
4,013 Views

Hi,

I have developed a custom command in the WFA as below

param (
[parameter(Mandatory=$true, HelpMessage="Cluster IP address")]
[string]$Cluster,

[parameter(Mandatory=$true, HelpMessage="Storage Virtual Machine name")]
[string]$VserverName
)

# connect to controller
Connect-WfaCluster $Cluster

# create the export policy
Get-WFALogger -Info -message $("Getting status of Avscanner '" +$VserverName + "'")
Get-NcVscanConnection -VserverContext $VserverName -ErrorAction Stop

 

when i am testing it, this is executing successfully, but i am not getting any output as expected(status of vscan)

can someone please help me on this

i manually use vserver vscan connection-status show this command to get the status. 

2 REPLIES 2

donny_lang
3,989 Views

If you connect to your controller with Connect-NcController in a normal PowerShell session and then run your Get-NcVscanConnection cmdlet manually outside of WFA, do you get the proper output back? 

Nishith
3,901 Views

Hi Danny,

sorry for the late reply.

yes, i am getting the status information when i am running Get-NcVscanConnection cmdlet manually outside of WFA,

but when i am trying to use the same api in WFA (in custom command), i am not getting any errors(command is executing successfully) and also i am not getting any output.

Public