Comments
-
Those times are displayed in the interface as local timezone but stored in the DB as UTC. The SWQL I provided below converts for you but you could also do that with SQL - http://stackoverflow.com/questions/8038744/convert-datetime-column-from-utc-to-local-time-in-select-statement
-
Why not go lowfi and run a speaker out from the server closet to your cube farm? Wireless or extended over IP would work also. We run a simple PC with very limited user rights connected to a larger LCD dashboard to show us a visual cue that something is red - if the remote speakers are nearby everyone will simply assume…
-
www.solarwinds.com/.../orionapmphcomponenttypeshttp.htm www.solarwinds.com/.../orionapmagcreatingpowershellmonitor.htm Thanks, Christian
-
Not to backseat quarter back it but have you looked at the node Polling Details resource to see what the Next Poll and Last DB synch values are? I have seen some objects retain the last value before going unreachable but have not seen that with nodes yet.
-
I do have that one and it's good since I haven't figured out another way to alert on nodes not updating the database without getting all of them at once. Maybe some combination of polling engine up and node update delayed. So now I have polling engine alerts and dependencies including parent routers to my polling engines…
-
Powershell also- interested in a divide and conquer approach Thanks, Christian
-
Decided against case since it will be too manual and Status Description should work for you - however I have only EOC 1.4.1 and it's kicking back on Status Description so I had to join up StatusInfo and make my own. It's always something... not sure these links will work for your EOC but you can modify them as needed. BTW…
-
Listed as a fixed issue in SAM 5.01 but maybe it takes an uncheck and recheck of the Hardware Health to take affect - let me try that and add the same node to my 2nd Orion system to see how it acts? -Update -my BL460c G7, G6, nor a DL380 G6 work in either SAM 5.01 while my DL380 G5 does show memory in the current hardware…
-
As in actions are being done again?
-
I went straight from spreadsheet to IPAM but suspect you can export/import to migrate data. IPAM excels in this area (pun intended) I am not 100% sure what integration you were looking for- I have not seen Orion-Engineers toolkit integration include IP Monitor. what were you looking for?
-
custom OID's are not in the drop down menu - you might need to explore setting a node custom property based on a custom poller empty or NULL value - then use the custom property to drive group dynamic query logic... not really to tough but script or SQL agent job....
-
14x9in i have one turned inside out inside a backpack for extra padding. The other I put in my trunk in case of road side emergencies. Or being spotted by rescue planes. Or hunting.
-
I've had whole sites of servers go "down" when just the border router was down. Unfortunately Orion doesn't know if they are "down" or just "unreachable" unless you help it - you can add a parent dependency for each site on it's routers back to your poller or you could write it into the alert suppression. Good…
-
I can confirm for my install that 2.5 resolved the lack of DNS hostnames showing - minutes after the update to 2.5 I saw all of them even before the next poll. Sneaky 2.0 was just hiding them from us the whole time.
-
getting warmer - I was able to get yours to work with SELECT DISTINCT nodes.caption ,'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N:'+CAST(Nodes.NodeID as varchar(256)) as 'DetailsURL' Then when you select columns skip the detailsurl or you can hide it - add Details Page Link display setting to your caption column and it…
-
I don't have a fix- just ungroup while you need to work on field formatting- should still work fine in the web either way. Same thing I do when I have a ${variable} in the where clause. If possible move out to the web-based report engine which I have not seen have the sort issue.
-
I was all good with this thread until you mentioned Switchport mapper works when UDT does not. Not super happy about that and contemplating worth at this point.
-
It's not a menu option but a filter on your AppStack view. That said there is an unofficial way to behind the scenes filter which VM's show up in appstack. I'd stick with the filter for now.
-
Swql studio has allowed invoke for some time but it’s more of a test environment. You then script against the api with those same invoke operations. I meant that all IPAM api was read only until recently they also added some other operations. IPAM API · solarwinds/OrionSDK Wiki · GitHub
-
SQL version I use to strip ANY domain from nodes. This will show you all nodes which have periods and what they would be changed to if you ran the second script. SELECT nodeid,Caption AS [Before] ,CASE WHEN caption LIKE '%.%' THEN LEFT(Caption, CHARINDEX('.', Caption) - 1) ELSE Caption END AS [After]FROM…
-
Why not see if you can have your DBA's, assuming you have access to some or can figure it out yourself, pull in a view of the cmdb data through SQL. Then rather then API you can just update SQL values. Pick your poison. Or pull both into SQL and compare then push back into Orion via API. Thanks, Christian
-
We need to see an API capable of easily adding network names or IP's to discovery profiles then kick off those profile discovery jobs to auto add the node. Thanks, Christian
-
Invoke-SwisVerb : ProvideFault failed, check fault information. At C:\Users\chmalone\Desktop\orion_start_discovery.ps1:74 char:23 + $out = Invoke-SwisVerb <<<< $swis "Orion.Discovery" "StartDiscovery" @($StartDiscoveryCfg) + CategoryInfo : InvalidOperation: (:) [Invoke-SwisVerb], FaultException`1 + FullyQualifiedErrorId :…
-
* That's all in the SDK powershell examples - open the sample .ps1 and copy into your script. The filter portion of the script is great once you know what captions and/or types you want to avoid adding. * From the SDK.pdf in swis 1.9: * * Using DiscoverInterfacesOnNode and AddInterfacesOnNode verbs * Starting with Orion…
-
i didn't explain my solution very well but it can and does compare the trigger query against a past version of itself. BY all means we can do the same for the results but I thought your question was around the query itself changing?
-
I Like that approach- mine was to warehouse then call the archive tables and union as needed.
-
Any chance we'll see API into credential?
-
Having the opposite problem-all my existing discovery profiles where we select 0 ports are still being added to UDT. 100's of windows nodes don't belong in UDT. Thanks, Christian
-
HOw do you turn on user auditing? I've taken advantage of web-based alerts and now include two links in each email alert * Details URL for the object (app,node,interface,etc) * url to the alert details page to see all that new goodness like the other objects alerting or alert history.
-
Thanks - any concern of some additional pollers having powershell v3 and others v2 - my early requirements only pertain to one site and would rather stage it?