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

#3676
Hi!

I suppose you mean web UI session. It could be set in nxmc.properties file with sessionTimeout property (in seconds). nxmc.properties file should be located in your application server class path.

Best regards,
Victor
#3677
Announcements / Re: NetXMS 1.2.14 released
June 02, 2014, 01:59:21 PM
Нет, не нормально. Я проверю и исправлю.
#3678
Can you run server under gdb and send me stack trace after crash?

Run it as

gdb /path/to/netxmsd

at (gdb) prompt enter

run -D5

when it crashes at (gdb) prompt enter

bt

and send me it's output.

Best regards,
Victor
#3679
Did you build it from sources? If yes, try to replace file src/libnxsl/parser.y with attached one and recompile. Check that you have flex and bison installed.

Best regards,
Victor
#3680
Yes, there is a bug in script compiler that may cause crash. Are you using 32 or 64 bit server?

Best regards,
Victor
#3681
General Support / Re: Freezing Agents
May 27, 2014, 06:11:16 PM
Hi!

Good news, let's hope it is fixed now :)

Best regards,
Victor
#3682
General Support / Re: Custom logo for web console
May 27, 2014, 01:50:01 PM
Hi!

Sorry, I change how it is configured. I was under impression that nobody uses this feature :) Now you should set custom logo in your nxmc.properties file, like this:


loginFormImage = /logo.jpg


Path should be relative to classpath root. Simplest variant is to put logi file next to nxmc.properties and use form /file.

Best regards,
Victor
#3683
Hi!

Starting with version 1.2.14 agent appends event source, event ID, and event severity to NetXMS event. Actual position depends on number of capture groups. For example, for rule defined as


    <rule>
      <level>1</level>
      <match>(.*)</match>
      <event params="1">100002</event>
    </rule>


(with 1 capture group) source will be available as %2, event ID as %3, and severity as %4.

Best regards,
Victor
#3684
Hi!

I'm currently investigating similar issue on one system. I'll post results here as well.

Best regards,
Victor
#3685
General Support / Re: DCI value format string
May 25, 2014, 01:51:23 PM
No, you should use transformation script to convert bits into Kbits.

Best regards,
Victor
#3686
Hi!

Proposed workflow looks correct. I've added description for CreateNode function to our wiki :)

Best regards,
Victor
#3687
У меня идей больше нет :) Может быть можно будет договорится об удаленном доступе к системе - может на месте замечу что-то?
#3688
Quote from: VSS on May 24, 2014, 09:14:32 AM
Quote from: Victor Kirhenshtein on April 24, 2014, 07:06:53 PM
Тогда ничего сделать нельзя. Я подумаю как можно добавить переменные в запросы в DBQuery.

Подскажите, пожалуйста, есть ли что-то подобное в 1.2.14?

Да, есть. На английском был маленький анонс: https://www.netxms.org/forum/announcements/netxms-1-2-14-released/msg13923/#msg13923. В понедельник разработчик этой опции будет доступен, расскажет подробнее :)
#3689
Hi!

Actually that means that server did not recognize string value as floating point number. You can try to set data type to float and use explicit cast with real(), like


return real(res)


It is also possible that your locale expects floating point numbers to have , instead of .

Best regards,
Victor
#3690
General Support / Re: DCI value format string
May 24, 2014, 07:57:11 PM
Hi!

You have to define it like "Out: %s Kbps". %s will be replaced by DCI value. You can use any format specifiers allowed for Java's String.format (http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax).

Best regards,
Victor