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

#4606
General / Re: NXCP
May 02, 2013, 09:22:45 PM
Unfortunately there are no ready to use documentation on communication protocol. I suggest to read server source code. All command handlers are located in file src/server/core/session.cpp. Client source code could help as well. Feel free to ask if you have any more specific question.

Best regards,
Victor

#4607
Похоже на баг в нашей SNMP библиотеке. Вы могли бы получить tcpdump'ом полные пакеты, отсылаемые и получаемые snmpget и nxsnmpget?
#4608
General Support / Re: libnxcl version
April 30, 2013, 04:30:25 PM
Hi!

Version 1.2.5. Version of libnxcl is always same as of the whole project.

Best regards,
Victor
#4609
General Support / Re: WebUI anon access
April 29, 2013, 11:16:46 AM
I've added auto login option in 1.2.7. See this wiki page for details: http://wiki.netxms.org/wiki/Autologin_for_Management_Console.

Best regards,
Victor
#4610
General Support / Re: nxdbmgr export
April 29, 2013, 10:54:23 AM
Hi!

Yes, there is a bug in nxdbmgr. I've fixed it in 1.2.7.

Best regards,
Victor
#4611
Hi!

There are no external table support in agent. However, most likely you'll be able to create external parameters provider script: http://wiki.netxms.org/wiki/ExternalParametersProvider.

Best regards,
Victor
#4612
General Support / Re: Reading in values from a file
April 29, 2013, 10:43:56 AM
Hi!

I think that ExternalParametersProvider could be better solution in that case. You can create script which will create output like

tickets_new_total=0
tickets_open_AlistairMann=3
tickets_open_DavidBulwer=3
tickets_open_SteveChapman=13
tickets_open_total=45
tickets_overdue_total=12
tickets_unassigned_total=26

and then add to nxagentd.conf:

ExternalParametersProvider = <your_script>:<polling_interval>

Then you'll see each output line as a new parameter for the node.

Best regards,
Victor

#4613
General / Re: Management Console sources
April 29, 2013, 10:39:26 AM
Hi!

You can get stable versions from SVN at https://svn.netxms.org/public/netxms/tags. For example, version 1.2.6 is available as https://svn.netxms.org/public/netxms/tags/version-1.2.6.

Best regards,
Victor
#4614
General Support / Re: Dashboards in Windows
April 25, 2013, 03:18:17 PM
It's a bug (missing functionality) in dashboard view - not all possible elements added to this "Add" menu. You can add any element via dashboard object properties - go to "Dashboard Elements" page and add elements there.

Best regards,
Victor
#4615
General Support / Re: VLAN Interfaces on L2-Switches
April 24, 2013, 12:10:06 PM
Hi!

You can use configuration poll hook script to find VLAN interfaces and unmanage them automatically.

Best regards,
Victor
#4616
General Support / Re: Dashboards in Windows
April 24, 2013, 12:09:22 PM
Hi!

Dashboards are identical on all platforms. And yes, you can add network maps as dashboard elements. It is strange that you cannot see some elements. Can you share a screenshot please?

Best regards,
Victor
#4617
Первое что приходит в голову - неправильная настройка time zone на сервере (или клиентах), или просто неправильное время. Попробуйте открыть график за большой промежуток - скажем, за день - будут там данные?
#4618
General Support / Re: Folder size via agent
April 16, 2013, 09:10:28 AM
Hi!

You can also use File.Size parameter:

File.Size(directory,*,1)

this will get size of all files in given directory and subdirectories. If you want to ignore subdirectories, you can use form

File.Size(directory,*,0)

Full description of File.Size and File.Count arguments:

File.Size and File.Count accepts the following arguments:
    path, pattern, recursive, size, age
where
    path    : path to directory or file to check
    pattern : pattern for file name matching
    recursive : recursion flag; if set to 1 or true, agent will scan subdirectories
    size      : size filter; if < 0, only files with size less than abs(value) will match;
                if > 0, only files with size greater than value will match
    age       : age filter; if < 0, only files created after now - abs(value) will match;
                if > 0, only files created before now - value will match

All arguments except first can be omitted.

Best regards,
Victor
#4619
General Support / Re: Advanced Schedule
April 16, 2013, 09:05:07 AM
Hi!

Just checked the source code - NetXMS does not support ranges n-m where n > m. So you should be able to achieve desired result with the following combined schedule:

*/5 0 * * * *
*/5 7-23 * * * *

This will collect DCI every day from 00:00 to 00:59 and from 7:00 to 23:59. If you want to include 1:00 as well, you should add

0 1 * * * *

to match exactly this time.

Best regards,
Victor
#4620
Пришлите пожалуйста результат SNMP walk для OID .1.3.111.2.802.1.1.13.1.3 и .1.3.111.2.802.1.1.13.1.4.