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 - Marco Incalcaterra

#61
Quote from: ofca on March 27, 2016, 02:47:06 PM
I'd like to only receive critical alerts (about hosts going down etc.) on the android client. Is this possible?

Currently you can only customize sound and led colour notification for alarm severity. Probably the entire notification area should be reorganized to allow full customization (sound, colour, vibration, etc.) based on severity. I added a feature request, you can follow progresses here (when I'll found time to implement it  :-\)

https://dev.raden.solutions/issues/1194

Best regards,
Marco
#62
You can filter "isatap" interface as per suggestion in this post:

https://www.netxms.org/forum/configuration/how-to-automatically-unmanage-'unwanted'-interfaces/msg19307/#msg19307

Regards,
Marco
#63
It works fine! :)

Thank you very much!

Marco
#64
Hi,

In most of Windows installation NetXMS discover the "isatap.*" interface, since I'm not interested in monitoring those interfaces I manually put them into unmanaged state but doing this for hundreds nodes is a boring task.

Has anyone a suggestion on how to automatically set to unmanage some nodes interfaces that meets specific requirements in the name?

Regards,
Marco
#65
Hi,

I choose to show last value in object overview for DCI with {instance} parameter, it works properly but sometimes it appears also the "generic" version of the DCI and not only the instances, see attached images (OK.PNG is as it should be and KO.PNG is the wrong one).

Am I doing something wrong?

Regards,
Marco
#66
Quote from: hzdtony on January 31, 2016, 02:06:05 PM
moreover,Windows 2012 R2 system  have other network interface as "isatap.localdomain" and "isatap.{34F1D761-B32C-4AF0-936A-9C64598A8529}".this why?

ISATAP defines a method for generating a link-local IPv6 address from an IPv4 address, and a mechanism to perform Neighbor Discovery on top of IPv4:

https://en.wikipedia.org/wiki/ISATAP
#67
Announcements / Re: NetXMS 2.0 released
December 31, 2015, 06:45:22 PM
Quote from: Marco Incalcaterra on December 31, 2015, 05:01:06 PM
*************************************************************
EXCEPTION: C0000005 (Access violation) at 000000005A68E25D
PROCESS TERMINATED[/tt]

OS Windows server 2012R2 x64
DB MSSQL 2012 SP2 (MS15-058: GDR Security Update) x64

The solution, as suggested by Victor, is to change the driver used to connect to DB: from ODBC to MSSQL (inside server configuration file).

Marco

#68
Announcements / Re: NetXMS 2.0 released
December 31, 2015, 05:01:06 PM
Well.... seems something wrong with this release, I get access violation as soon as I try to login via with web console or java console:


[31-Dec-2015 15:49:26.227] [DEBUG] [CLSN-0] Sending message CMD_GROUP_DATA
[31-Dec-2015 15:49:26.227] [DEBUG] [CLSN-0] Sending message CMD_GROUP_DATA
[31-Dec-2015 15:49:26.227] [DEBUG] [CLSN-0] Sending message CMD_GROUP_DATA
[31-Dec-2015 15:49:26.227] [DEBUG] [CLSN-0] Sending message CMD_USER_DB_EOF
[31-Dec-2015 15:49:26.242] [DEBUG] [CLSN-0] Received message CMD_LOAD_EVENT_DB
[31-Dec-2015 15:49:26.242] [DEBUG] [CLSN-0] Sending message CMD_REQUEST_COMPLETED
[31-Dec-2015 15:49:26.242] [DEBUG] [CLSN-0] Sending message CMD_EVENT_DB_RECORD
[31-Dec-2015 15:49:26.242] [DEBUG] [CLSN-0] Sending message CMD_EVENT_DB_RECORD
[31-Dec-2015 15:49:26.414] [ERROR] EXCEPTION 0xC0000005 (Access violation) at 0x
5A68E25D (crash dump was generated); please send files C:\\netxmsd-3020-14515733
66.info and C:\\netxmsd-3020-1451573366.mdmp to [email protected]


*************************************************************
EXCEPTION: C0000005 (Access violation) at 000000005A68E25D
PROCESS TERMINATED


OS Windows server 2012R2 x64
DB MSSQL 2012 SP2 (MS15-058: GDR Security Update) x64


Log file sent to [email protected]

Best regards,
Marco
#69
Announcements / Re: NetXMS 2.0 released
December 31, 2015, 04:26:09 PM
Hi,

trying to install right now, I'm having problem in downloading generic Linux static agents:

https://www.netxms.org/download/agent_packages/nxagent-2.0-linux-x86-static.tar.gz
https://www.netxms.org/download/agent_packages/nxagent-2.0-linux-x64-static.tar.gz

Both links seems broken.

Best regards,
Marco
#70
Quote from: ReddeNet on November 21, 2015, 12:45:22 AM
Are we the only people on the planet attempting this combination????  Is it worth wasting any more time on this?

Hi,

I'm using NetXMS on Windows Box with MSSQL since 2008. During the past years I migrated various combination of MSSQL (from 2005 to 2012) and Windows Server (from 2003 to 2012 R2) both on real servers and on virtual machines. The current install runs on a VM with Windows 2012 R2 Standard edition with MSSQL 2012 Standard edition hosted on a Proxmox virtual environment; I use it to monitor about 220 nodes with more than 5000 DCI.

I'm sure that I had some problem in the past (but nothing unsolvable), the real problem is that I really don't remember precisely what's gone wrong because it's a long time since a fresh install...

Best regards,
Marco
#72
Quote from: Victor Kirhenshtein on September 11, 2015, 03:37:36 PM

rcpt = GetRecipients($node);
return (rcpt != null) ? rcpt : "default@email";  // fallback email if nothing was set in containers

sub GetRecipients(obj)
{
    foreach(p : GetObjectParents(obj))
    {
        rcpt = GetCustomAttribute(p, "recipients");
if (rcpt != null)
return rcpt;
    }
    foreach(p : GetObjectParents(obj))
    {
        rcpt = GetRecipients(p);
if (rcpt != null)
return rcpt;
    }
    return null;
}


I've used this one (the second) and it rocks! Thank you very much for your help.  :D

Best remarks,
Marco
#73
Quote from: Victor Kirhenshtein on September 11, 2015, 03:24:32 PM
Hi,

how script to extract recipients looks like?

Best regards,
Victor

Exactly like te one you posted in your example, I assumed (wrongly at this point) that all the parents were explored in the "foreach" statement.

Marco
#74
Quote from: Victor Kirhenshtein on August 04, 2015, 06:06:57 PM
It will return emails configured in parent container for node in custom attribute "recipients", or default email if nothing is configured. Script can be made more complicated to collect all recipients on all upper layers and combine them into single recipient list.

Hi Victor,

Have a look to the attached image. Is it possible to find the custom attribute in a "top level" parent container? I've created the custom attribute "recipients" into the container "Thinksoft" but when the alarm is generated from an inner node (e.g. VM-REDQUEEN three levels down or SKYNET two levels down) that custom attribute seems ignored.

Best regards,
Marco
#75
General Support / Re: windows 2000 and older
August 24, 2015, 01:34:00 AM
Quote from: rob-dullaart on August 20, 2015, 03:54:54 PM
Hi,

Yes I mean the agent. The version 1.0.13 seems to work. However it still gives an error.

Thanks,
Rob

I use version 1.0.13 on an very old Windows 2000 server without problem.

Best regards,
Marco