ET ✭✭✭✭✭

Comments

  • Hi, this type of alert is possible, but you need to have version Orion NPM 10.3 and define Basic Alert (advance alerts are suppressed once Node is in "Unmanaged" state). Definition of Basic Alerts is a bit different, but you can defined same conditions with suppression. Please see "Configuring Basic Alerts" Thanks ET;
  • Jobs Queue is performance counter with type INT32. In case counter is decremented and original value is zero, it goes into negative value. But because it's signed int and it can't be negative that's why this value rollover and counter has its maximum value 2,147,483,647. Explanation: someone restarted all counters with…
  • Hi, is this caused by upgrade? From which version you upgraded? Do you receive a lot of traps or syslogs?
  • In case some element is deleted (node, interface, volume) we store event about that. Try to explore your events on web site.
  • Which NPM version do you have? Is it latest 10.2.2?
  • Hi, from which version was this upgrade? 10.1.3? Are those nodes marked as DYNAMIC? I assume NBNS is DNS resolving, and it's related to status poll where we try to retrieve IP from hostname.
  • Hi, Each successfully resolved DNS name expired in 7 days (by default), so we keep dns names for 7 days and than we try to re-resolved them. Do you think that this could be the problem? if you use manual dns lookup on view EndPointDetails it shows you also old dns name? You can also try to flush dns cache on computer where…
  • Hi, this is unfortunately known issue. In case you use subqueries in your custom SQL trigger condition. Then automatically generated reset SQL query isn't always valid and accurate (it works fine for simple, solo queries). Solution here is to use also Custom SQL command for reset condition and don't rely on automatically…
  • Hi, they do exactly same work. In this standalone EXE you can change some extended parameters, but result will be same as nightly maintenance. So answer is NO you don't have to use both.We use this EXE file only in case, that there is some problem with nightly maintenance. Thanks
  • Hi, you are right SWQL doesn't support MODULO operator. But you can still do it self SELECT ToString( Ceiling( (HourDiff(MAX (EventTime ), GETUTCDATE()) / 24.0 - Floor(HourDiff(MAX ( EventTime ), GETUTCDATE ()) / 24.0) ) * 24 )) + ' Hours ' AS Hours FROM Orion.Events In SWQL use almost always GETUTCDATE since it's default…
  • Hi, just small clarification. Which view is it? Is this for both direction ingress+egress, in case that it's not node detail view? thanks
    in netflow issue Comment by ET August 2009
  • This is mostly caused by corrupted SDF file ( SqlCE database). If you can see in DataProcessor.log or PollingController.log exception about not able to deserialize SqlCe..... . Than this is it. Please replace PollingController.sdf located in ...\Documents And Settings\All Users\Application Data\SolarWinds\Collector\Data…
  • Hi, sorry to hear that. NTA service is set up to start automatically after it stops unexpectedly. If there was reason why we stop service in regular way, you can see this information in event log (try to check it). Thanks
  • New web based reporting is actually pretty same as the old one. It has same expressive capabilities. In some aspects in can be different to old report-writer, but in general it's same. Select source of data (which nodes, interfaces, .... ) and after that define projection (what and how you want to see it in…
  • You are missing END in CASE statement. MAX(CASE WHEN ResponseTime.MinResponseTime IS NULL THEN 0 ELSE ResponseTime.MinResponseTime END) - MIN(CASE WHEN ResponseTime.MaxResponseTime IS NULL THEN 0 ELSE ResponseTime.MaxResponseTime END) AS JITTER or you can use COALESCE which isn't so chatty…
  • Can you see Cpu&Memory poller in "List Resources" on this node? We don't perform automatic reinventory if you enabled cpu/mem polling after node was added into Orion. In that case you must run "List resources" and enable polling if it's detected.
  • Hi, well, this is native activeX component, so it's more able native c++ runtime on that machine. Probably there's missing some WinAPI function. Try to reinstall runtime again, and then you can try manually register this library regsvr32.exe c:\Windows\SysWOW64\SNMPv50.ocx if it pass, problem solved. thanks
  • Hi, I know it's maybe stupid question, but have you set up your routers to export Netflow information? e.g. How to Configure Netflow >> Do you have some warnings in resource "Last 25 Traffic Analysis Events", that NTA collector discarded netflow stream from these nodes? If so, there should be also reason, why we did this.…
  • Hi, this weird value actually doesn't indicate any issue to your system. We found out that there's possibility of synchronization issue on JobEngine Service start up between initial reset counter value and first jobs incrementation on this counter. In case reset counter value is slow, we can miss first counter…
  • Hi, currently we don't have UI option to do it, but you can manually edit sql table [websites]. For generated macros we always prefer website which has type 'primary'. You can make your additional web site to be primary and it will solve your problem.
  • Hi, in case you really want to do that by TSQL, you need to specify unmanage time period, otherwise system will automatically re-manage those interfaces. Your command should look like. Use NetPerfMon; UPDATE dbo.Interfaces SET Unmanaged = 1, UnManageFrom=GETDATE(), UnManageUntil=DATEADD(year, 1, GETDATE()) WHERE Fullname…
  • Hi, try to look here:
  • Hi, packet loss is calculated as a moving average of 10 last ICMP echos. Each ICMP request has value SUCCESS/FAILURE. Those results are store into buffer with length 10, and we calculate average on it. Example: 9 success and 1 failure ping = 100 * 1 / 10 = 90% packet loss In case we have in memory only 2 pings, because we…
  • Please don't use flag /3GB in boot.ini. We have customers which had problem with that. Please read follow link: Understanding socket error Thanks
  • Hi, the issue is, that both InputInterfaceIndex(InputInt) and OutputInterfaceIndex(OutputInt) are zero. If this happend, we can't map traffic to interface managed by Orion and we must drop this traffic. ET;
  • Hi, netflow technology is not based on SNMP, viz. Netflow - wiki. To export netflow data from windows server you need to have some netflow exporter ( e.g. nProbe, Maji, .... )
  • Hi, filling this directory can be caused by fact, that some of our polling workers hangs during. And overall JobEngine tries to kill this hanged worker and clear all related files, system won't let him to do that (maybe memory dump is collected during that time which can take a long time, some antivirus block it, ... ).…
  • Hi, I would like to help here, but I don't know where you want to do this transformation. Is that in SQL query? thanks
  • Hi, I was playing now a bit with Grafana and I created what you need. Grafana DataSource for SWIS. Feel free to use it and extend. GitHub - etichy/grafana-swis-datasource: DataSource plugin for grafana to access SolarWinds data via SWIS REST API