Hello,
I have 5 stackable cisco switch, when we stack all the switchs we will have 5 different serial number.
Can orion detect all off 5 serial number, since now orion only show one serial number.
You are right in saying that in node summary page it will only list the serial number of the switch that is added trough the IP (which is one of the members) but..
The data is present in Orion, when you add these boxes into your environment do you see a 'Switch Stack tab' into your node details view (when you click on the node and get into node details view you should be able to view the members and in that tab you should also be able to view the serial numbers for all members). Please look at the below link:
https://documentation.solarwinds.com/en/success_center/npm/content/npm-monitor-cisco-switch-stacks.htm
You should be able to pull it out of the DB through queries or another way to do this is use UNDP Pollers and pull it out through SWQL/SQL queries reports accordingly.
Hope this helps.
__PRESENT__PRESENT__PRESENT__PRESENT
Below is an older post that has the SWQL query in it you could use for a start
(+) Serial numbers for Cisco switches / Stack Switches - Orion SDK - The SolarWinds Platform - THWACK
I make SQL query using this command and the result I'm able to see the SN for stacked or non stacked switch
select * from APM_HardwareAlertData inner join Nodes on Nodes.NodeID=APM_HardwareAlertData.NodeID left join NPM_SwitchStackMember on Nodes.NodeID=NPM_SwitchStackMember.NodeID Where Vendor like 'Cisco%'