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 - Alex Kirhenshtein

#511
How often you are collecting this table?
#512
General Support / Re: installation of 2.0 release
January 04, 2016, 01:29:42 PM
Hello.

Yes, it's known problem with repository, update will be pushed later today.
#513
Одна из проблем в синтаксисе:

tm_datetime<-year = int32(substr(rawdatetime,1,4));

должно быть

tm_datetime->year = int32(substr(rawdatetime,1,4));


Но основная проблема – в nxsl сейчас нет поддержки функции mktime.
#514
General Support / Re: configuration of powerware 5125 ups
December 29, 2015, 05:49:02 PM
My bad, missed colon.

Correct configuration is:

Device = 0:/dev/ttyUSB5,9600,8,N,1:BCMXCP

P.S are sure about port speed? Common speed for BCMXCP-devices is 19200 (set by default in netxms driver)
#515
General Support / Re: configuration of powerware 5125 ups
December 29, 2015, 05:16:08 PM
Use full name of the device – /dev/ttyUSB5
#516
Общие вопросы / Re: netxms 2.0-RC2-2 segfault
December 17, 2015, 07:45:49 PM
Не встречали пока такой проблемы, так что будет очень полезно, если зальете коре+бинарники, посмотрим.
#517
Общие вопросы / Re: Chart via API
December 16, 2015, 03:18:32 PM
Картинкой – нет, ее рисует клиент.
Через API можно достать вот этим методом:  getCollectedData(long nodeId, long dciId, Date from, Date to, int maxRows)
#519
I think guide is wrong. Don't have access to oracle right now so can't check, but it should be like this (if environment is set correctly and "sqlplus Netxms/mpsdev@MPSDEV1" connects successfully):

Database = id=mpsdev1;driver=oracle.ddr;server=MPSDEV1;login=Netxms;Password=mpsdev

or you can use instant client connection string without tnsnames:

Database = id=mpsdev1;driver=oracle.ddr;server=//lltcdevoda1-scan:1521/mpsdev1;login=Netxms;Password=mpsdev

or you can even use full connection string there (haven't tried that, but should work as well):
Database = id=mpsdev1;driver=oracle.ddr;server=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=lltcdevoda1-scan)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=mpsdev1)));login=Netxms;Password=mpsdev
#520
General Support / Re: SNMPV3
December 15, 2015, 12:36:31 AM
I've fixed that, now snapshots should work as well
#521
General Support / Re: SNMPV3
December 15, 2015, 12:27:40 AM
Script, which generate this header require git repo, not a snapshot. It's a bug.
However, if you clone repo instead of using snapshot – it will work.
Repository url for clone is https://git.netxms.org/public/netxms.git

P.S. don't forget to switch branch to "develop" (git checkout develop)
#523
I removed big chunks of the text (unrelated to MIB definition) from top and bottom of the files.
#524
Fixed files in attachment
#525
Feature Requests / Re: OTRS Integration
December 14, 2015, 11:58:17 AM
You need to create new shared library with custom implementation of HelpDeskLink class. I'm afraid we don't have any documentation on developing modules, but it's pretty much straight forward.

Here is interface definition: https://git.netxms.org/public/netxms.git/blob/refs/heads/develop:/src/server/include/hdlink.h?js=1

You can check existing JIRA implementation:
https://git.netxms.org/public/netxms.git/blob/refs/heads/develop:/src/server/hdlink/jira/jira.cpp?js=1
https://git.netxms.org/public/netxms.git/blob/refs/heads/develop:/src/server/hdlink/jira/jira.h?js=1