Comments
-
Hi, which version of NTA do you use? In latest version we don't have this part of code, and we removed this behavior at all. Thanks ET
-
Hmmm I see, it's latest version. Anyway solution for you is to replace SDF with blank. I've entered internal case to track this scenario. Thanks
-
You also need to delete netflow triggers on table [Nodes] and [Interfaces], otherwise you could have exception when you try to delete node or interface.
-
Hi, if you want to netflow be able process data from Netflow-V9, than the template must contains following fields (according RFC). (ID // RFC name) 1 // octetDeltaCount, 2 // packetDeltaCount, 4 // protocolIdentifier, 5 // ipClassOfService 7 // sourceTransportPort 8 // sourceIPv4Address 10 // ingressInterface 11 //…
-
Seems to be same case as this one
-
Hi, so far we don't have such functionality. We load all engines in order as they were added into database and we select just first one (main server). Please submit feature request for this.
-
I use powershell script $app = Get-WmiObject -Class Win32_Service | Where-Object { $_.PathName -match "Solarwinds*" } foreach( $item in $app) { Write-host "Stopping .... " $item.Name if( ($item.State -eq "Stopped") -or ($item.StopService().returnValue -eq 0) ) { Write-host "ok" } else { Write-host "Failed ... " $item.State…
-
Each resource is sorted by column TotalBytes, and in case that % reflects this, it should be the same. But you mentioned bandwidth utilization, and there is no column utilization, so ..... do you mean some other endpoints resource or report? thanks
-
Hi, Unfortunatelly for you, time period filter is defined per view, so it's not part of resource definition as e.g. how many rows you want to see. Detached resource just display last time period defined on view. But I agree that it could be usefull to change time period also for detached resources or for resources self. As…
-
Hi, you can find some info here: Netflow Service hang on Start Regards
-
We changed behavior in 3.5, so please upgrade to new version.
-
to be sure GIGA = 1e9
-
I think that you can use windows resource kit and integrate performance counters into MIB. PERF2MIB.EXE: Performance Monitor MIB Builder Tool But I've never tried that :(
-
Hi, check this post, I think it's the same.
-
Hi, there's still registered notifications for this poller. - Please stop all solarwinds services ( if you have more pollers, do it on all) - Go to database and clear these tables (you can delete records only for your poller, but easier is to clear them all. Subscriptions will be recreated on services start up from…
-
Are you running on latest NPM 10.1.2? We improved this area to avoid false reboot alerts, but can't say if it solve your problem. BTW, there's no way to disable sysuptime poll for SNMP nodes. You can switch node to ICMP only, but that's probably not you want. Regards
-
Just but there join to nodes table along NetworkNode column and NodeID and condition Status = 2 SELECT * FROM Events e INNER JOIN Nodes n ON e.NetworkNode = n.NodeId WHERE n.Status = 2
-
Hi, You should upgrade to NTA 3.5 where reports are corrected. NTA 3.5 release notes Thanks
-
Hi, you can create extra alert for each mailing group. For instance Create alert when node goes down for Miami only = specify Location condition to MIAMI and assign appropriate alert action. Alert for New York can be created as a Copy of this one with changed location condition and new actions.
-
Hi Jordinho, so you have problem that your expired IPs are not fully cleaned up? There was wrong default configuration in NTA setting, can't remember version right now. By default we removed only 1000 IPs per day (that's nothing). You need to go to NTA setting page and change maintenance configuration. Regards
-
Hi All, if you can see some gaps in your charts or no data at all, it's first symptom that maybe your SQL server is overloaded, and we are not able to store new data to DB. Update timestamp that we received new data is easy, but store flow buckets to DB, that's the hard work. But to say it certainly, we need diagnostics…
-
This issue was most probably caused by unstable or slow database connection. We saw several cases in 10.1 and lower version where all interfaces or volumes or nodes we massively removed from poller. It was always caused by database or huge network latency. In 10. 2 we made it more stable for these situations. Can you see…
-
Hi, there is always information about input and output interface in flows. So even if you export data only from 4 interfaces, you can have other interfaces involved in flows as input or output interface. Do you think that this could be the reason? Regards
-
Hi, hardware information is stored in Nodes table. Number of CPUs is fetched directly from historical table, because it can change over time. It's not easy to get this information, but you can use this SQL command. SELECT data.NodeID as NodeID, data.Caption, COUNT(data.CPUIndex) As NumberOfCPU from (SELECT cpu.NodeID,…
-
Hi, I'm wondering whether there's some support ticket to which we can bind this issue? Thanks ET;
-
yes, you can. More I wonder why it's not cleared automatically. Which version do you have?
-
Can you post here your case number? How big was collector SDF files before you reset them? Thanks
-
In case you use "advance alert", this is done by periodical check values in database.So it depends how often this periodical check is. For your purposes is much more suitable "basic alert" which react directly after poll result arrives.
-
MAC address for volume is Description. Can you confirm that it's same? Can you export volumes with duplicity for this node and post it here? (for instance CSV) SELECT * FROM Volumes WHERE NodeID=[nodeID with duplicate volumes]
-
Does your script provide some UI element? AlertService runs without desktop interaction so your script will be blocked in case it uses some. Is your OS 64b or 32b? I would try: - create trigger action run external program. - use: c:\Windows\system32\cscript.exe "path\yourScript.vbs" > c:\log.txt this will redirect whole…