Quantcast
Channel: THWACK: Message List
Viewing all 20607 articles
Browse latest View live

Re: What we are working on post VoIP & Network QM 4.0

0
0

sorry, but the three commnds i listed are NOT supported

 

i have an open ticket # 478595 and they are asking the dev team to support them


Re: What we are working on post VoIP & Network QM 4.0

0
0

please add support for VTC units from tandberg(cisco) and polycom

Re: Date that a node/interface was entered into monitoring?

0
0

You can also use Events to get requested data:

 

SELECT e.* FROM Events e JOIN EventTypes et ON (e.EventType=et.EventType)

WHERE et.Name IN ('Node Added','Interface Added')

 

But if you are able to get all requested data depends on how are your events/auditing retentions set up.

 

For interfaces you should be able to get the date of the first traffic poll:

SELECT i.FullName, dat.added FROM Interfaces i JOIN

(SELECT MIN(DateTime) AS added,InterfaceID FROM InterfaceTraffic

GROUP BY InterfaceID) AS dat

ON (i.InterfaceID=dat.InterfaceID)

 

Jiri

Volume delta over time alert

0
0

Hi,

 

I am wondering if it was possible to create an alert that will trigger if the volume (hard disk) utilisation increases by X percent over Y time? E.g. 20% over 2 hours.

 

I have created the following custom alert in the advanced alert manager. It should trigger when the utilisation changes by 5% in less than a 2 hour window but it does not. I tested this by monitoring a local volume, then copying files on the disk to increase the utilisation percentage (43% to 60%).  Running the query against the database returns the volume that I am testing against but still no alert (action is to send an npm event and write to a local log file).

 

(I also believe the alert will trigger if the utilisation DROPS over time as well but that's something to sort out if I can get this step working...)

 

 

Does anyone have any experience with a volume delta alert or can see where my SQL alert is incorrect?

(Alert is enabled, set to check every 1 minute, reset when no longer true, trigger all times of day)

 

Thanks

How to Integrate other vendor's CPU polling with Top 10 average CPU Load

0
0

Hi,

 

I have to monitoring of CPU Utilization and Memory Used of variety of vendor: HP, 3COM, Check Point, Blue Coat, Cisco, Alcatel, Fortigate. I was successful to polling them out of my Orion Web Console. But how to put them together in Top xx Node average CPU load, % Memory Used v...v.. Now only Cisco device in that Top xx resouce

And the second question is Do the UnDPs create some custom variable to those polling vendor like ${CpuLoad} and ${MemoryUsed}?

 

I really need an answer for this.

Please guide me if anyone has solutions.

Re: How to Monitor Hyper-v & VMWare Servers...

0
0

Hi

Thanks for reply. For Hyper-V, I am not getting Hyper-V option. Is there any other alternative?

What application monitor I need to use for VMWare and Hyper-v?

How to move one node to other group(group by comments)

0
0

Hi all,

 

As i am new to solarwinds, in my new company already solarwinds is running configured by our old staff.

now i am trying to learn about solarwinds, i got one small task.

all nodes are in different groups, that groups are defined as "group by comments"   now i want to move one node to another group,  see the below image in unknown[1], the node i want to move in Branches[37] group.

 

sw1.JPG

can any one  help me ? i checked the below

settings --> node management --> Manage groups..  but int that the group(group by comments) is not showing.

 

sw2.JPG

I hope anyone understand my question. Manythanks..

 

BR

Ershad.

Re: Unable to Open the NTA Web Console.

0
0

I'm downloading the trial to test it out the system...

But now I cannot try it at all..

Hope you guys can assist me on that..


Re: What we are working on post VoIP & Network QM 4.0

0
0

So now I gotta bust out the snagit for you on a production system...cause you done called me a liar

 

Here's your screenshot for ICMP Path Jitter

icmppathjitter.JPG

Now you are also saying they don't have Path Echo....here's that screen too

icmppathecho.JPG

You are correct about the ICMP Jitter that function isn't currently supported.  Meanwhile, I didn't find any other commercial software that currently does support that operation so I think that one is a decent one to add.

 


Re: Database model

0
0

I'm sorry, if I'm a bit dense here, but I can't see where I would be able to confirm that Orion.Nodes.NodeID is related to Orion.Events.NetObjectID? I can't find it in the Schema or in the left pane of SWQL Studio...

Same goes for your example with Orion.Nodes.NodeID and Cirrus.Nodes.CoreNodeID

Re: Problem with Windows shortcuts

0
0

Thanks Doug for all of the info. Very helpful

Re: Adding node to a container (group) with Perl?

0
0

Great advice. Allowed me to throw together the add/delete from group function without too much difficulty:

 

sub manageGroup {

     my $parser = XML::LibXML->new();

     my $dom = $parser->parse_string($_[0]->QueryXml('SELECT Uri FROM Orion.Nodes WHERE NodeID=@id', {'id'=>$_[3]}));

 

     my $xpc = XML::LibXML::XPathContext->new($dom);

     $xpc->registerNs("s", "http://schemas.solarwinds.com/2007/08/informationservice");

     my $nodeUri = $xpc->findvalue("//s:data/s:row/s:c0");

 

     if($_[1] eq "Add"){

          my $memberDefinitionInfo = SOAP::Data->type('xml'=>

               "<MemberDefinitionInfo xmlns='http://schemas.solarwinds.com/2008/Orion'>

               <Name></Name>

               <Definition>".$nodeUri."</Definition>

               </MemberDefinitionInfo>"

          );

          return $_[0]->Invoke("Orion.Container", "AddDefinition", [$_[2], $memberDefinitionInfo]);

 

    }elsif($_[1] eq "Delete"){

          $dom = $parser->parse_string($_[0]->QueryXml('SELECT DefinitionID FROM Orion.ContainerMemberDefinition WHERE Definition=@id AND ContainerID=@container', {'id'=>$nodeUri, 'container'=>$_[2]}));

          my @DEFIDS = $dom->getElementsByTagName("c0");

 

          if (scalar(@DEFIDS) == 1){

               return $_[0]->Invoke("Orion.Container", "DeleteDefinition", [scalar($DEFIDS[0]->textContent)]);

          }else{

               print "Error! Found ".scalar(@DEFIDS)." definition ID's for that node / container combo.\n";

          }

     }

}

 

my $swis = SW::InformationService->new();

$swis->outputxml("true");

$swis->proxy("https://".$hostname.$endpoint);

$swis->proxy->http_request->authorization_basic($username, $password);

 

#print manageGroup($swis, "Add", "84", "12929");

#print manageGroup($swis, "Delete", "84", "12929");

 

Thanks again.

On-Call Rotation

0
0

What is the best way to set up a on-call rotation that has a Primary, Secondary and Tertiary?  Is there a way to set it up in a manner that when the primary changes that you dont have to edit the entire escalation policy every time? 

Re: network goes down every 3 weeks

0
0

started to disconnect all devices at the end of the day when everyone had gone home and the errors have now stopped, maybe someone on the network is causing these errors from their pc...virus perhaps?

Re: SSH from an Orion NPM 10.4.2 web page link

0
0

I've had to reset IE and then register SecureCRT to get it to work properly.  Funny, the free Solarwinds Dameware SSH client always seems to register properly - if it was more like SecureCRT we'd switch in a minute.


Re: SCP exam registration

0
0

It seems my registration was "lost in the mail" for a few days but eventually made it to the right person (Thanks, Patrick!)

 

I passed!

Re: NPM list resources is not responding

0
0

So a server reboot fixed something else and now polling is working... Any chance you could look through the various Log files to see if there was anything reporting a problem? c:\program data\solarwinds\logs I think is the directory to start looking in.

Re: network goes down every 3 weeks

0
0


also all the input errors on the router are overruns what could be causing this?

Re: VPLS MPLS

0
0


so why would you choose to use a vpls over an mpls?

Re: Custom Columns in NPM Manage Nodes

0
0

I assume that you are logging into NPM through AD group account. Unfortunately AD group accounts have that limitation. I already opened 2 cases about this to Solarwinds. The first answer was "It is by design" and the second answer to my last case was "The developers have stated as a bug" (Case #431564 - Bug Submitted). I don't think they know what they are doing .

 

By the way if you need a workaround you need to use local user or AD individual user account. Your choice is remembered even if you log out then log back in. But that's not a solution for us anyway. There are lots of AD group users so it is impossible to create an individual user for every one of them. Because of this, my colleagues had bug me all the time.

 

Since you bring back to my attention again I decided to make an idea for this. Please vote if you support.

Viewing all 20607 articles
Browse latest View live




Latest Images