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

#5911
General Support / Re: free space value
August 30, 2011, 09:43:44 AM
Hi!

So you wish to get something like "4.05 GB" instead of "4348654387"? Then your transformation script should looks like following:


($1 / 1024 / 1024 / 1024) . " GB"


And don't forget to change DCI type to "string"!

Best regards,
Victor
#5912
General Support / Re: Java Console - Use Multipliers
August 30, 2011, 09:40:47 AM
Hi!

It's not implemented yet. Added to feature requests.

Best regards,
Victor
#5913
General Support / Re: java console - event log
August 30, 2011, 09:40:09 AM
It's not implemented yet.

Best regards,
Victor
#5914
General Support / Re: vlan's and ports
August 30, 2011, 09:38:33 AM
See explanation here: https://www.netxms.org/forum/configuration/vlan-list/. In short, you cannot do much - only wait for appropriate driver to be developed. What devices do you have?

Best regards,
Victor
#5915
General Support / Re: vlan list
August 30, 2011, 09:37:12 AM
Hi!

For most devices, getting VLAN list requires reading of proprietary MIBs. In NetXMS 1.1.x, we introduce concept of network device drivers - server modules which handle vendor-specific things for network devices. Currently we only have drivers for Avaya (former Nortel) Ethernet switches and some Cisco switches and routers. You can check what driver is selected for a device by looking at "Driver" line on overview page. If "GENERIC" driver is selected for device, that means that there are no vendor-specific support for it.

Best regards,
Victor
#5916
General Support / Re: snmp traps log
August 24, 2011, 09:49:20 PM
It's still not implemented in Java console. Currently, the following important functionality are missing in Java console:

1. Logs (there are some work done on event and audit logs, but not complete);
2. Cluster configuration;
3. Network discovery configuration (but you still can configure it by changing server configuration variables directly);
4. "command" type object tools not working very well
5. Configuration export

But these gaps should be closed soon.

Best regards,
Victor
#5917
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
#5918
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
#5919
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
#5920
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
#5921
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
#5922
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
#5923
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
#5924
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
#5925
K sozaleniju bez izmenenija konsoli, tol'ko konfiguraciej - nel'zja. Ideja horoshaja, mozno budet realizovat'.