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

#4816
Hi!

Can you send me a screenshot of DCI configuration (thresholds page) and event processing policy rules for threshold activation and deactivation events?

Best regards,
Victor
#4817
Будет в 1.2.6. Должно было быть в 1.2.5 уже :(
#4818
Обновленный скрипт для пересоздания таблицы event_log:


IF ((SELECT uses_ansi_nulls FROM sys.tables WHERE object_id = object_id('netxms.event_log')) = 0)
      BEGIN TRY
            BEGIN TRANSACTION;
            USE netxms_db;
            /*Create new table with identical structure but option on*/
            SET ANSI_NULLS ON;
            SET ANSI_PADDING OFF;

            CREATE TABLE netxms.event_log_new
            (
            event_id bigint not null,
            event_code integer not null,
            event_timestamp integer not null,
            event_source integer not null,
            event_severity integer not null,
            event_message varchar(255) not null,
            root_event_id bigint not null,
            user_tag varchar(63) not null,
            PRIMARY KEY(event_id)
            ) ;

            CREATE INDEX idx_event_log_event_timestamp ON netxms.event_log_new(event_timestamp);

            /*Metadata only switch*/
            ALTER TABLE netxms.event_log  SWITCH TO netxms.event_log_new;

            DROP TABLE netxms.event_log;

            EXECUTE sp_rename N'netxms.event_log_new', N'event_log','OBJECT';

            COMMIT TRANSACTION;
      END TRY

      BEGIN CATCH
            IF XACT_STATE() <> 0
              ROLLBACK TRANSACTION;

            PRINT ERROR_MESSAGE();
      END CATCH;
ELSE
      PRINT 'ANSI_NULLS ALREADY ON'

#4819
Quote from: Akira on January 16, 2013, 07:42:53 AM
С базой теперь ОК.
Теперь при старте консоли
Cannot load MIB file from server: Bad MIB file data

Попробуйте удалить файл netxms.mib из каталога $HOME/.nxmc/data и перезапустить консоль.
#4820
General Support / Re: syslog v1.2.5
January 15, 2013, 02:14:48 PM
Hi!

I think you can ignore Java stuff for know and just use old console for editing XML. And yes, you must use &lt; for < character inside tag - and don't forget semicolon!

Best regards,
Victor
#4821
General Support / Re: Legacy Console
January 15, 2013, 02:13:26 PM
Hi!

I have marked legacy console as deprecated so new users will not try to download and use it. It is still required sometimes unfortunately, but many new things cannot be configured via legacy console. So I'm trying to avoid misunderstanding by new users.

Best regards,
Victor
#4822
General Support / Re: Legacy Console
January 15, 2013, 12:27:40 PM
Hi!

Sorry, these two parts are not covered and you still have to use legacy console for that. I'll try to fix that in 1.2.6 release.

Best regards,
Victor
#4823
General Support / Re: Agent's Configuration
January 15, 2013, 12:26:34 PM
Hi!

Agent policy places separate files into config include directory on agent. It will not change master configuration file of the agent. You can check manually that file with your configuration appears in config include dir on agent (in Windows it's usually C:\NetXMS\etc\conf.d).

Best regards,
Victor
#4824
General Support / Re: syslog v1.2.5
January 15, 2013, 12:24:35 PM
Hi!

There should be no changes in syslogd. Can you send me XML file with parser configuration? Also, there are still problems with editing syslog XML config from Java console. Please use legacy console until 1.2.6 release.

Best regards,
Victor
#4825
General Support / Re: Manual start discovery process
January 12, 2013, 06:38:06 PM
Hi!

Discovery process is running all the time in the background. You can speed it up a bit by:
1. adding key devices manually
2. putting more frequently used SNMP community strings to the top of community string list
3. decreasing value of server's configuration parameter DiscoveryPollingInterval

Best regards,
Victor
#4826
Общие вопросы / Re: 1.2.5 баги
January 11, 2013, 03:31:20 PM
Я думаю сделать возможность выставить тип отображения объектов по умолчанию. Добавил уже в багтрекер для 1.2.6: https://www.radensolutions.com/chiliproject/issues/204.
#4827
Да, он предполагался и в шаблонах тоже. В 1.2.6 обязательно будет.
#4828
Announcements / Re: NetXMS 1.2.5 released
January 10, 2013, 10:38:01 PM
Hi!

Yes, you can upgrade directly.

Best regards,
Victor
#4829
I replace WIndows installers on web site with updated version (file names was not changed). Try to uninstall existing version, clear/drop database, and install updated version.

Best regards,
Victor
#4830
Yes, nxdbmgr set broken as well :(

Try to add line

DataDirectory = C:\NetXMS\var

to netxmsd.conf.

I'll also put fixed installer on web site later today.

Best regards,
Victor