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

#4666
Функции GetDCIValue* вернут последнее собранное значение (после обработки скриптом трансформации). $1 последним значением не считается, ето текущее входное значение. А вот предыдущее входное значение в скрипте получить нельзя. Если надо именно raw значение от предыдущего опроса, то я добавлю новую функцию в следующий релиз.
#4667
А как не работает? Дает ошибку на этот DCI или неправильное значение? Еще попробуйте *.* заменить на *.
#4668
Это на всех рабочих станциях одновременно произошло, или только на одной? Попробуйте заново консоль распаковать в пустой каталог и запустить оттуда.
#4669
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
#4670
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
#4671
Hi!

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

Best regards,
Victor
#4672
А какой драйвер вы используете - mssql.ddr или odbc.ddr? Если mssql, то попробуйте перейти на odbc (базу и пользователя надо будет создать вручную).
#4673
General Support / Re: Upgrade Error from 265 to 266
April 07, 2013, 02:20:18 PM
Hi!

It will work correctly. You can also execute manually

CREATE INDEX idx_event_log_root_id ON event_log(root_event_id)

This is a bug in upgrade procedure - it tries to create filtered index, which is a feature new to SQL 2008, so it fails on previous SQL server versions.

Best regards,
Victor
#4674
General Support / Re: Procurve Switches Driver
March 27, 2013, 11:09:41 AM
Hi!

That's strange - looks like no drivers loaded at all. Is there any files with extension .ndd? Also, try to run server with debug level 5 and send me messages shown at startup.

Best regards,
Victor
#4675
Hi!

Peer information should be updated during topology poll. Try to run topology poll manually on the switch. It will also be cleared when this peer MAC address will be found on another switch.

Best regards,
Victor
#4676
General Support / Re: How to run Scripts?
March 26, 2013, 10:14:42 PM
Hi!

You can run your script from library (or external file) by opening server debug console (Tools -> Server Console menu) and type

exec script_name

Best regards,
Victor
#4677
Hi!

Just found a bug in PDU mode sender that can cause crash on 64-bit systems. Can you try to switch SMS driver to text mode?

Best regards,
Victor
#4678
Hi!

Did you recompile your custom driver after NetXMS server upgrade?

Best regards,
Victor
#4679
поскольку type это не исполняемый файл, а команда cmd.exe, то надо либо писать

ExternalParameterShellExec = OraDmOf15:type c:\oracle\temp\5.txt

или

ExternalParameter = OraDmOf15:cmd /C type c:\oracle\temp\5.txt
#4680
Попробуйте заменить src/db/dbdrv/odbc/odbc.cpp на приложеный и пересобрать odbc.ddr.