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

#3616
General Support / Re: Dell Server SNMP Problem
June 10, 2014, 12:30:32 AM
Hi,

I didn't really understand how it looks. Could you please provide some screenshots or at least exact OIDs (which is working and which is not)?

Best regards,
Victor
#3617
General Support / Re: Monitoring of processes
June 10, 2014, 12:28:10 AM
Hi,

it's probably better to fix the agent :) I've register it as a bug (https://www.radensolutions.com/chiliproject/issues/597), will take a look in next few days.

Best regards,
Victor
#3618
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
#3619
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
#3620
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
#3621
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
#3622
Работать может, но информацию тогда можно получать только через SNMP. Для работы System.CPU.Usage (и некоторых других) на Windows должен быть загружен субагент winperf (должна быть строчка в конфиге вида SubAgent = winperf.nsm). Если этот субагент загружен, то можно и напрямую windows performance counters настраивать (но реальный сбор данных будет через агента все равно).
#3623
А как выглядит список интерфейсов в NetXMS для этих устройств?
#3624
Общие вопросы / Re: nxShell pollNode
June 06, 2014, 04:05:35 PM
Можно передать null.
#3625
Hi!

Could you please provide SNMP walk result for .1.3.6.1.2.1.2.2?

Best regards,
Victor
#3626
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
#3627
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
#3628
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
#3629
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
#3630
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