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

#3661
General Support / Re: Communication session broken
June 10, 2014, 12:23:53 AM
Hi,

do you have something related to that server in netxmsd log file?

Best regards,
Victor
#3662
General Support / Re: Admin Guide
June 10, 2014, 12:22:33 AM
Thank you! We are slowly expanding it, hopefully full coverage is not so far away :)

Best regards,
Victor
#3663
Hi!

I also like solution 1 more. I just implemented it - starting with 1.2.15 SYS_NODE_UP event will have parameter at index 1 which will be set to 1 if node is returning from "unreachable" state and 0 if from "down".

Best regards,
Victor
#3664
Announcements / Re: NetXMS 1.2.14 released
June 10, 2014, 12:12:32 AM
Hi!

Yes, it's possible to upgrade directly to 1.2.14.

Best regards,
Victor
#3665
Работать может, но информацию тогда можно получать только через SNMP. Для работы System.CPU.Usage (и некоторых других) на Windows должен быть загружен субагент winperf (должна быть строчка в конфиге вида SubAgent = winperf.nsm). Если этот субагент загружен, то можно и напрямую windows performance counters настраивать (но реальный сбор данных будет через агента все равно).
#3666
А как выглядит список интерфейсов в NetXMS для этих устройств?
#3667
Общие вопросы / Re: nxShell pollNode
June 06, 2014, 04:05:35 PM
Можно передать null.
#3668
Hi!

Could you please provide SNMP walk result for .1.3.6.1.2.1.2.2?

Best regards,
Victor
#3669
Hi!

getColumnIndex is a method of Table class, so you should use it as $1->getColumnIndex in transformation script, like you do with get method.

Best regards,
Victor
#3670
General Support / Re: HP mibs
June 06, 2014, 12:09:10 AM
Hi!

Looks like this MIB set contains incomplete SNMPv2-SMI module (file rfc2578.txt). It does not define MODULE-IDENTITY, etc. If you remove it and use SNMPv2-SMI.txt from NetXMS distribution those import errors should be gone.

Best regards,
Victor
#3671
General Support / Re: Dell Server SNMP Problem
June 05, 2014, 11:52:51 PM
Hi!

Could you please provide result of SNMP walk for any of problematic OIDs?

Best regards,
Victor
#3672
Feature Requests / Re: nxevent
June 03, 2014, 12:53:54 AM
Hi!

I've implemented #1 and #2 (event identification by name and correct return codes). #3 is a bit more complicated so I'll do it later :)

Best regards,
Victor
#3673
Hi!

Actually there is an error in query used in function. Query looks like

SELECT max(coalesce(cast(idata_value as float),0)) FROM idata_%u
WHERE item_id=? AND (idata_timestamp BETWEEN ? AND ?) AND isnumeric(idata_value)

but isnumeric returns int, not boolean, so it should be

isnumeric(idata_value)=1

I've fixed it. PLease let me know if you need intermediate server build with this fix.

Best regards,
Victor
#3674
Общие вопросы / Re: Scripting
June 03, 2014, 12:06:36 AM
Надо хотя-бы один операнд принудительно сконвертировать в int64. Скрипт не расширяет результат умножения автоматически (что возможно неправильно, я подумаю позже об этом).
#3675
Общие вопросы / Re: netxms snmp table
June 03, 2014, 12:04:20 AM
Ну это не баг - поскольку в SNMP информации о кодировке нет, то сервер использует кодировку, указанную в CodePage, для конвертации текстов, полученных из SNMP.