I would like to show the information of Manage Agents (s038ats01/.../ManageAgents.aspx) in my Summary and/or NOC view.
Is this possible? I dont find any widget I could use.
Hi there,
You can do this with a 'Custom Query' widget:
SELECT Name,IP,agentstatusmessage as [Message],case when agentstatus <> 1 then '/Orion/AgentManagement/Images/StatusIcons/Small-Agent-Down.gif' when agentstatus = 1 then '/Orion/AgentManagement/Images/StatusIcons/Small-Agent-Up.gif' end as [_iconfor_Message],agentversion as [Version]FROM Orion.AgentManagement.Agent
This will give you a widget that looks like this:
Let me know how you get on!
If this helps answer your question please mark my answer as confirmed to help other users, thank you!
Marlie Fancourt | SolarWinds Pre-Sales Manager
Prosperon Networks | SolarWinds Partner since 2006
This is great, thank you
This helps a lot. i append WHERE agentstatus != '1' as I only wanted to know non pollng agent nodes.
Any chance to create the node name a link to node details?
Try this:
SELECT Name,Agent.Node.DetailsUrl as [_linkfor_Name],IP,agentstatusmessage as [Message],case when agentstatus <> 1 then '/Orion/AgentManagement/Images/StatusIcons/Small-Agent-Down.gif' when agentstatus = 1 then '/Orion/AgentManagement/Images/StatusIcons/Small-Agent-Up.gif' end as [_iconfor_Message],agentversion as [Version]FROM Orion.AgentManagement.Agent
Thanks!
Marlie.