News:

We really need your input in this questionnaire

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - dmayan

#1
I let it run all night (Proccess Hacker showed no I/O and a full core of cpu usage) and it began working OK.

Thanks anyway!!
#2
Hi,

I followed the standard procedure to upgrade NetXMS from 2.0.3 to 2.0.4 (Win 2008 R2 x64)

- Stopped the NetXMS services (Agent, WebUI, Core)
- Run the DB checker without errors
- Run the installer with /SILENT
- Run the WebUI installer

Now the Core service is stuck at starting, consuming a entire core of my server. I killed the netxmsd process, ran a db check (It found a lock), and restarted the service, with the same result.

What else could I do ??

Thanks in advance!
#3
Unchecking "Logarithmic scale" got it working.

Maybe a bug?

Many thanks,

Diego
#4
Victor,

I'm trying the script, but it returns a string, wich I cannot graph


Edit: It is graphing in the line chart, but on the performance tab I'm getting an invalid operation error

Greetings, Diego
#5
Thank you for answering Victor!!

Can I do the same with internal Ping parameter? I was searching in the NXSL guide but I can't find it.

Greetings,
Diego
#6
General Support / Line chart changes while node down
April 07, 2016, 01:58:36 AM
Hi,

Is there a way to make the line charts show when the node is down and no data is being collected? My issue look as following:



I'm monitoring a lot of unstable wireless SM, and sometimes is difficult to quickly see if there are problems in the link. I tried with a transformation that brings the value to negative when node status goes to down, but since NetXMS stops collecting DCIs other than Status when the node goes down, it doesn't do anything.

I hope you understand me, and sorry for my bad english,

Greetings and keep up the amazing work,

Diego
#7
Thanks for your answer Victor. Any ideas on when 2.0.3 will be available?

Diego
#8
Hi !

I'm begining to automate some operations on my NetXMS installation with server scripts. What I can't found is a way to set the "Exclude from topology" flag on an interface, via some function. I'm missing something in the wiki or it is not implemented? Currently I'm managing and unmanaging interfaces using this script:

// Find "Entire Network" object and start enumeration from it
EnumerateNodes(FindObject(1));

// This function walks object tree recursively starting from given root
sub EnumerateNodes(rootObject)
{
// Walk all child objects
foreach(o : GetObjectChildren(rootObject))
{
if (classof(o) == "Node")
{
interfaces = GetNodeInterfaces(o);
foreach(i : interfaces)
{

//trace(1, "Interface: name='" . i->name . "' id=" . i->id);

if (i->name=="2")
{
ManageObject(FindObject(i->id));
println(i->ipAddr);
}
}
}
else if (classof(o) == "NetObj")
{
// For all other objects, go down the tree
// There can be additional checks for object class, like
// if (o->type == 5)
EnumerateNodes(o);
}
}
}


Thanks in advance and sorry for poor english!!

Diego