I am running a custom command(show interface status) against all Cisco Nexus routers which will show the interface hardware SFP type.
How do I get this SFP info through NQE? I am not getting the SPF printed, tried multiple was. Can anyone help me on this.
foreach cliCommandResponse in endpoint.cliCommandResponses
cliCommandResponse.command == "show interface status"
select {
endpointName: endpoint.name,
command: cliCommandResponse.command,
response: cliCommandResponse.response
}