Comments
-
Anytime
-
Lol oh yeah right there thanks dude
-
problem here is. Its just using 'Status' a reason this might not be the most desirable solution, is if you have anything other then 'Status' something like routing neighbour , CPU, memory,volumes etc then this doesn't directly change the status. this might be different with the new roll up mode of node status in NPM 12.5,…
-
wouldnt be the first time iv herd 'I want to alert on Nodes'
-
i am trying to mark you answer as 'answered' maybe i have 'newbie' rights? odd i cant find how to make the answer correct.. thats all i have..
-
you, could use use the golden Image approch, you pre-define all settings then deploy it with the image. but still this doesnt help when actaully pushing the agent out to already running vm's. might be worth puting this in your next build:Deploy with a Gold Master Imagem hopfully that helps
-
surething, you could use something like this: SWQL TILE QUERY SELECT Status, InstanceSiteId FROM ( SELECT i.Status, i.InstanceSiteId FROM Orion.NPM.Interfaces (nolock=true) i INNER JOIN Orion.NodesCustomProperties (nolock=true) as np on np.nodeid = i.nodeid WHERE np.xxx LIKE 'xxx' ) SWQL ASSET EXPLORER QUERY SELECT Status,…
-
i was actually hoping that the API would had a verb to update the world map table, would be a good feature. Still a couple of things you can do, just be careful. The first one is to update the table SELECT TOP 1000 * FROM [dbo].[WorldMapPoints] WHERE instance like 'Orion.Groups' here you can manualy update the Lat and Long…
-
I see alex jumping in <3
-
Awesome cheers dude, really appreciate your time and knowledge Dan
-
hey, tried a few different ways to get this to work.. I would suggest looking at this from the perspective of alerting, when you QoS drops have the email send you the NTA interface details page. something like this in the trigger actions within the alert itself. paste the below in to the 'Enter or paste' section.…
-
yup here you go 2016-11-18 14:32:34,695 [15] ERROR SolarWinds.Orion.Core.Models.Discovery.TypeResolverProxy - Cannot load type SolarWinds.Interfaces.Common.Models.Discovery.DiscoveredInterface,SolarWinds.Interfaces.Common 2016-11-18 14:32:34,695 [15] ERROR SolarWinds.Orion.Core.Models.Discovery.TypeResolverProxy - Cannot…
-
By running the installer downloaded from your primary polling engine, will pick up the new modules on the additional web server and install anything missing on the additional web server
-
Hasn't got an answer so why not select n.Caption,case when cpu.AvgPercentMemoryUsed < 75 then cpu.AvgPercentMemoryUsed end '< 75 %',case when cpu.AvgPercentMemoryUsed > 75 then cpu.AvgPercentMemoryUsed end '> 75%',cpu.DateTimeFROM CPULoad cpuINNER JOIN Nodes n ON n.NodeID = cpu.NodeID WHERE (datetime > Dateadd(minute,-150…
-
You are correct, here is a good article to put things into perspective for you Virtualization Manager Versus IVIM
-
i haven't turned mine off before. But yep it just wont discover the topologies but this can have a knock on effect for example: The Connect now feature in World Atles uses the L2 and L3 protocols to connect the nodes so if you use Maps to show Node placement on a MAP i would guess that would have a negative effect on that.…
-
Do an SNMP walk on the device you might find that MIB isnt showing you the Interface indexes or their is a duplicate interface index. id suggest: SNMP wallk check you can see the indexes if you cant see indexes log with vendor
-
Yea statically update the values
-
just wanted to jump in here . i noticed you mentioned "Orion won't download config from device, until changes come to your device" this is tripping me up abit not gonna lie. we have the boxed ticked 'only save configs that have changed' can i clarify does this mean when the there is a changed line in the config or is it…
-
HI, if you are looking for some type of report, here is a 'Custom Query resourse' widget query; Report on Muted and Unmanaged Entities is that what you are looking for?
-
i see what you mean now, this is achievable to configure, you will be able to find some very useful information here: Unmanaging and suppressing alerts for applications - Scheduled recurring maintenance windows of course you will need to look for the Interface Uri rather then applications Uri but the idea is the same. on a…
-
i see, if you are using a service account it wont matter if it is the same account or individual Orion accounts the principle is the same in regards to concurrent users count. you may have already realised but when users are using the same account you loose the ability to audit such as 'who' and 'when' for example who…
-
yea i understand, recently we had a tableau polling data from solarwinds database could look at it as also integration. sure, it depends what do you want in to pull from the database? node status? historic events up/down, utilisation etc..? i would suggest building a query then just popping it in to a SQL view CREATE VIEW…
-
hey, this should do the job: create a custom query resource paste the SWQL: select t.name as Alerting_Thresholds,t.level1value AS Warning,t.level2value AS CricitalFROM Orion.Thresholds t INNER JOIN orion.nodes n ON n.nodeid = t.InstanceId Where t.name…
-
looks like you are looking for a custom table poller Success Center. expected outcomes: unique name would be cpqRackServerBladeStatus and alert would be anything other then '2' { other(1), ok(2), degraded(3), failed(4) }
-
There are a few ways to do this. You can either poll the information from the device via UNDP and Alert on when the condition changes. To poll the information use the Orion Universal Device Poller application on the Solarwinds servers (You will need to find out what the OIDS are for the Power Supplys, normally on the…
-
ye, your right there, everyone loves a report i have attached a report i use to send out weekly/ monthly,should give you some ground work on grouping etc..
-
this service is defo stopped right?
-
You have two things here, the first is NPM. The NPM module will poll data from a SNMP enabled device such as ifInOctets and ifOutOctets OID’s to tell you how much data is passing through the interface. The second is NTA, the NTA module will give you a deeper insight into the traffic, this is done by sending Flow data from…
-
Hey, when working with the SWQL or SQL you need to join your table on to the the predefined select and from statement. your have to remove your select statement because you will be using two select statements and it will error out. the challenge would be that the current query doesn't have a unique ID of some type so it…