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

#4636
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
#4637
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
#4638
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
#4639
Первое что приходит в голову - неправильная настройка time zone на сервере (или клиентах), или просто неправильное время. Попробуйте открыть график за большой промежуток - скажем, за день - будут там данные?
#4640
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
#4641
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
#4642
Пришлите пожалуйста результат SNMP walk для OID .1.3.111.2.802.1.1.13.1.3 и .1.3.111.2.802.1.1.13.1.4.
#4643
В конфигурации сервера (Configuration -> Server Configuration) поставьте параметр EnableSyslogDaemon в 1, при необходимости поменяйте значение SyslogListenPort, и перезапустите сервер.
#4644
Попробуйте включить crash dump: добавьте параметры

CreateCrashDumps = yes
DumpDirectory = каталог для дампов

скорее всего там что-то будет.
#4645
Функции GetDCIValue* вернут последнее собранное значение (после обработки скриптом трансформации). $1 последним значением не считается, ето текущее входное значение. А вот предыдущее входное значение в скрипте получить нельзя. Если надо именно raw значение от предыдущего опроса, то я добавлю новую функцию в следующий релиз.
#4646
А как не работает? Дает ошибку на этот DCI или неправильное значение? Еще попробуйте *.* заменить на *.
#4647
Это на всех рабочих станциях одновременно произошло, или только на одной? Попробуйте заново консоль распаковать в пустой каталог и запустить оттуда.
#4648
General Support / Re: HP Procurve CPU Utilization
April 15, 2013, 01:16:18 AM
Hi!

MIB explorer shows you only base OID, there also an instance which is not shown. You can use walk from MIB explorer to derermine full OIDs. In your case, correct OID most likely will be .1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0, but you better check with SNMP walk.

Best regards,
Victor
#4649
General Support / Re: External Parameter Help
April 15, 2013, 01:14:28 AM
Hi!

Most likely timeout for agent command is too small (by default it's two seconds, so reading two perf counters with 1 second interval between samples for each will not fit). There was few discussions about agent timeout intervals on the forum. In short summary, two timeouts should be set correctly:

a) ExecTimeout on agent - timeout for executing external program
b) AgentCommandTimeout on server - timeout for any command sent from server to client

In general AgentCommandTimeout must be greater or equal to ExecTimeout.

Best regards,
Victor
#4650
Hi!

In the management console, go to Tools -> Import configuration, and select XML file to import.

Best regards,
Victor