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 - Victor Kirhenshtein

#5896
Feature Requests / Re: reports
August 24, 2011, 12:14:11 PM
Hopefully near end of year. I still have major changes pending which I wish to implement until next stable branch.

Best regards,
Victor
#5897
Feature Requests / Re: reports
August 23, 2011, 06:29:01 PM
Hi!

Version 1.1.4 will have integration with Jasper reports. Most likely in 1.1.4 there will be only integration mechanisms, and actual reports will come later.

Best regards,
Victor
#5898
General Support / Re: mib compiler
August 23, 2011, 06:26:10 PM
Hi!

The only purpose of MIB compiler is to provide information for MIB browser. Presence or absence of a MIB does not affect data collection or trap processing. You only need MIB files (and need to compile them) if you wish to select SNMP objects from the tree in MIB browser. You can just enter OIDs in numerical format by hand (or take them from external MIB browser) - in that case MIBs in NetXMS are not needed.

Best regards,
Victor
#5899
General Support / Re: if statement
August 22, 2011, 12:05:47 AM
Hi!

Script for this cold looks like following:


if ($1 == 1)
   return "yes";
if ($1 == 2)
   return "no";
return "neither_yes_or_no";


or, using switch operator:


switch($1)
{
   case 1:
      return "yes";
   case 2:
      return "no";
   default:
      return "neither_yes_or_no";
}


Best regards,
Victor
#5900
Java console is quite big in size, so I was not sure that it need to be included into server installer.
Standard Windows console will be fully replaced by Java console in the nearest future - the old console are still there only because some functions are still not implemented in Java version. As soon as they all be implemented, old console will be removed.

Best regards,
Victor
#5901
General Support / Re: Monitoring Ports
August 19, 2011, 12:04:18 AM
Depends on how do you monitor service status. If it is done via set of DCIs, then you can create additional DCI and in transformation script, read values of all service checking DCIs, count number of services in "down" state, and return that value. Then you will be able to set threshold on this DCI as usual.

Best regards,
Victor
#5902
General Support / Re: transformation
August 18, 2011, 04:41:26 PM
Quote from: lindeamon on August 17, 2011, 09:28:23 AM
another thing regarding this solution:
i have configured a dci to find uptime through snmp and in the autoapply it told it to apply it on node that have snmp and do not have an agent.what i want to know is,once a node was applyed with this dci and i install an agent on it,will the template be automatically unbind ? if not,what is the right way do unbind it automatically ?

It all depends on your auto apply script. Template is applied when script returns true, and removed when script return false. So, if you wish template to be applied only on nodes with SNMP, but without NetXMS agent, and remoed from SNMP-only node when NetXMS agent installed on it, your auto apply script should looks like following:


return $node->isSNMP && !$node->isAgent;


Best regards,
Victor
#5903
Hi!

In 1.1.x versions, you should use Java console for working with network maps. In Java console, there are separate tree (Maps) where you can create map objects.

Best regards,
Victor
#5904
K sozaleniju bez izmenenija konsoli, tol'ko konfiguraciej - nel'zja. Ideja horoshaja, mozno budet realizovat'.
#5905
Rusificirovat' konsol' ne slozno. Daze bil nachat etot process. Sam process prostoj - beretsja message fail i v nem anglijskij tekst zamenjaetsja na russkij. Posle etogo mozno sdelat' rusificirovannuju sborku konsoli.
#5906
General Support / Re: db export
August 17, 2011, 08:43:29 AM
Try to replace file dbschema_sqlite.sql with attached one. May be file that you have is incorrect.

Best regards,
Victor
#5907
General Support / Re: transformation
August 17, 2011, 08:39:54 AM
Hi!

SecondsToUptime should do the work. Don't forget that function names are case-sensitive, and don't forget to change DCI type to String. You transformation script may looks like following:


SecondsToUptime($1)


or


return SecondsToUptime($1);


Best regards,
Victor
#5908
General Support / Re: auto bind
August 17, 2011, 08:36:48 AM
Hi!

No, it should not loose autobind script on folder rename. It's just an attribute of the container and bound to object id of the container, as any other attribute.

Best regards,
Victor
#5909
General Support / Re: server crash - 1.0.11
August 17, 2011, 08:34:27 AM
Hi!

Did you have a chance to test 1.0.12?

Best regards,
Victor
#5910
Hi!

Under directory where you unpack console should be a directory called workspace\.metadata with file called ".log". Could you please send this file to [email protected]?

Best regards,
Victor