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 - Egert143

#226
General Support / Re: Node placed under wrong subnet
November 06, 2019, 05:09:46 PM
Hello, i made few pictures, one picture speaks more that 1000 words :P

Route node that has 2 /24 networks configured.



Node thats is on subnet "B", for some reason there is no 10.100.7.0/24 network under "Entire Network, default zone". Node gets added to 10.0.0.0/8


Also there are two 10.0.0.0/8 networks, one has only 1 node, other has 30+
#227
General Support / Node placed under wrong subnet
October 31, 2019, 02:54:13 PM
Hello

I think i found a tiny bug:

There is router being monitored currently with subnet a.a.a.a/24 on one interface. Today i added new subnet to this router b.b.b.b/24 on different interface. When adding new nodes with addres from b subnet, they appear on wrong network in netxms. Should be under Default -> b.b.b.b/24. But instead they apear under Default -> 10.0.0.0/8. What could cause this ?

When i would like to see address map for b.b.b.b/24 network, i cant because to netxms this network doesent exist.

#228
Hello

Is it possible to upgrade from 3.0.2258 straight to 3.0.2355, or should i do other updates first ?

Egert
#229
General Support / Acked folder icon
October 24, 2019, 08:53:15 AM
Hello

Is it possible to change "Objects" menu folder icon behavior: Currently when there is alert it shows as red cross on folder. When i mark alarm as acknowledged it still shows as red cross. With many folders its confusing as to which alarms are new and what are already acked.

Egert
#230
Hello

Would it be possible to add possibility of adding lines / links between nodes? For example show connections between wireless acces points ?

Egert
#231
Hello

Would it be possible to add two new features into network map:


  • Ability to customize link style between nodes. For example cable / fiber / wireless etc
  • Ability to Click and drag map with mouse and mouse wheel scroll. For big maps its quite slow to manualy zoom and position map.

Thanks in advance
#232
General Support / ServiceCheck.HTTP
October 02, 2019, 02:59:34 PM
Probably some rookie mistake but cant get it to work.

Current setup:

Under node i have dci with NetXMS Agent

parameter: ServiceCheck.HTTP(1.2.3.4,1001,/doc/page/login.asp)
source node is netxms server itself

response is 3

when visiting given page i use url: http://1.2.3.4:1001/doc/page/login.asp?_1570017371573

snmp to given device is working ok, so cant be connection issue.

What am i dooing wrong ?
#233
General Support / Re: Dashboard multiplier
September 30, 2019, 08:33:43 AM
Also in dashboard data source "display format" and "display raw values" dont have any effect.

#234
General Support / Dashboard multiplier
September 27, 2019, 01:52:57 PM
Hello

I am trying to display hdd used space in dashboard line chart. Currently DCi collects values as GB and in dashboard they get displayed with multiplier. But display is not correct.

For example: Disk usage is 1435GB and is dashboard its shown as 1.435 k. Is it possible to show as 1,4TB or disable dasboard multiplier ?

Egert
#235
General Support / Device driver
September 24, 2019, 01:05:50 PM
Is it possible to make new device driver or provide somekinde of useful info for making one ?

Currently speaking about Juniper SRX 5400 series router.

#236
Announcements / Re: NetXMS 3.0 released
September 17, 2019, 01:17:37 PM
May i ask what is "User agents (desktop support application)" supposed to do ? Is it somthing similar to vnc ?

#237
General Support / Re: help with aggregate DCI
September 17, 2019, 08:05:12 AM
Such a simple mistake. :) Got it working now, many thanks.
#238
General Support / Re: help with aggregate DCI
September 16, 2019, 06:02:26 PM
searchTimeTotal = 0;
activeDCIs=1;

foreach (dci : FindAllDCIs($node,".1.3.6.1.2.1.25.3.3.1.2.*") )
{

dciValue = GetDCIValue($node,dci->id);

if ( dci->name like "*{instance}" ) continue;


if ( dciValue == null ) continue;


searchTimeTotal+=dciValue;
activeDCIs++;
}

return activeDCIs;
//return round(searchTimeTotal/activeDCIs,2);


Cpu DCI:
Description: Cpu {instance}
parameter: .1.3.6.1.2.1.25.3.3.1.2.{instance}
discovery: snmp walk:.1.3.6.1.2.1.25.3.3.1.2

the result i am looking for should be 36 (36 cores), but i am getting 37 instead.
#239
General Support / Re: help with aggregate DCI
September 16, 2019, 02:03:33 PM
When i add "dciValueB = GetDCIValue($node,dci->name);" then i already get dci unsupported error.

When i use "if (dci->name like "*{instance}") continue;" it doesent match.
#240
General Support / Re: help with aggregate DCI
September 16, 2019, 08:17:47 AM
Nice got that bit to work, indeed i was mixing parameter name and description.

But i have one tiny problem still: The cpu dci-s are auto generated by instance, and ".1.3.6.1.2.1.25.3.3.1.2.{instance}" counts as result also when searching with "foreach (dci : FindAllDCIs($node,".1.3.6.1.2.1.25.3.3.1.2.*") )", how can i filter that one out ?