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 - romb

#1
Hello Victor. netxms version is 2.0.2. OS is Centos 6.5, database is MySQL 5.1.73.
#2
I need to  delete this subnet because it created with invalid mask.
But when I do this netxmsd log says

[ERROR] Thread "Syncer Thread" does not respond to watchdog thread

After this message all data inside client is messed up.
This is /23 subnet containing 200 nodes in it. How can I delete it and what is the problem?
#3
General Support / Re: DCI based on SNMP trap.
May 26, 2015, 01:37:50 PM
Thank you for this great feature.
Looks like there is little problem somewhere.
I have 2 scripts.
First runs on problem snmp trap:

PushDCIData($node,444,1);
PushDCIData($node,444,0);
return true;

Second runs on restore snmp trap:

PushDCIData($node,444,0);
PushDCIData($node,444,1);
return true;


So I should get beautiful graph with status from 0 to 1.
But sometimes line goes aslant from one event to another instead of forming rectangular shape. Looks like sometimes PushDCIData($node,444,0) in second script does nothing. How this can be fixed?
#4
General Support / Re: DCI based on SNMP trap.
November 16, 2014, 10:30:26 AM
Thank you. Where I can track this?
#5
General Support / DCI based on SNMP trap.
October 26, 2014, 03:00:12 AM
Basically I want to have chart for status received by SNMP trap.
It looks like I should use DCI for this. How I can configure DCI to use SNMP trap results for value?