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

#1
General Support / smtp notification channel missing
February 27, 2024, 10:55:46 AM
hi, i have moved the installation to new server and than upgraded the netxms version to 4.5.3 (from 4.5.0) and i found that the program doesn't sent email.
i check the installation and i found that smtp channel is missing and the channel create before was set as dbtable
how can is possible? 
i have compilded the source as old server, missing some library on new server?
thanks
Andrea
#2
General Support / import data from influxdb
February 14, 2022, 11:10:27 AM
Hi,

it's possible create a node and DCI imported from external source like influxdb? Since netxms still doesn't support the api to vcenter through SDK,  i want to configure influx and than import the metrics on netxms.

it's possible?

thanks

Andrea
#3
Quote from: Victor Kirhenshtein on May 27, 2020, 07:26:05 AM
Actually we already decided that we have to move from libvirt to direct interaction with VMWare API (as we already did for XEN) - it's just question of available time and resources.

Best regards,
Victor

hi, with version 3.3 is possible use vmware api? if yes where i can find documentation?

thanks

Andrea
#4
General Support / clarify about sample count value
June 24, 2019, 04:11:13 PM
Hi, i can't find an explanation about real function to the sample count for average value on DCI general tab.

For example, i need to monitor disk latency by windows perfcount. I know that windows has 1 second sample of this counter and i want to retrieve average value about 60 seconds. So i need to put 60 as value and than the agent collect every second the perfcount value and tell me the average of these 60 samples?

thank you for clarification.

Andrea
#5
thank you, it works.

cheers

Andrea
#6
Hi,

i have a netxms version 2.2.10 running on centos 7. When i try to update the installation to version 2.2.13 i have this error

/usr/local/lib/libnxsnmp.so.2: undefined reference to `nx_memdup'
collect2: error: ld returned 1 exit status
make[5]: *** [nxminfo] Error 1
make[5]: Leaving directory `/root/netxms-2.2.13/src/server/tools/nxminfo'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/root/netxms-2.2.13/src/server/tools'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/root/netxms-2.2.13/src/server'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/root/netxms-2.2.13/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/netxms-2.2.13'
make: *** [all] Error 2

thank you

Andrea
#7
Hi, i have a netxms installation on centos. I saw that with freetds i can run sql query directly from linux console. my goal is create a script on netxms server to run query on my mssql cluster.
i have already create a cluster node on netxms and i want to create a dci directly on cluster's object and not on cluster's node. it's possible?

thanks

Andrea
#8
General Support / Re: Windows event log -> NX-1258
July 03, 2018, 10:08:56 AM
Hi, i'm interested to this option because i want use netxms agent for windows event. Now i use graylog, but if it's possible pass all event's data to netxms i will use it instead graylog
#9
General Support / Re: disable short unit
July 03, 2018, 10:05:28 AM
Hi, thank you. I don't need disable this option on graph but i found the same voice for summary table.

#10
General Support / disable short unit
June 28, 2018, 10:24:58 AM
Hi, is possible to disable the short visualization for number like 1,000 instead of 1K?

thank you
#11
General Support / Re: help with aggregate DCI
May 15, 2018, 05:25:19 PM
Hi, thank you for reply, but i need to create a dci with average value of these DCI (i have 4 domain controllers)

\\MSExchange ADAccess Domain Controllers(DC1)\\LDAP Search Time
\\MSExchange ADAccess Domain Controllers(DC2)\\LDAP Search Time
\\MSExchange ADAccess Domain Controllers(DC3)\\LDAP Search Time
\\MSExchange ADAccess Domain Controllers(DC4)\\LDAP Search Time

I need to create a new dci with value that is average of these DCI's value.

I understood that i need to create a script and after link this script to a new DCI.

thank you

Andrea
#12
General Support / help with aggregate DCI
May 07, 2018, 04:10:09 PM
Hi, i'm configuring node for my exchange server and i need to create a dci that is the average of this performance counter

\MSExchange ADAccess Domain Controllers(DC)\LDAP Search Time

for all my domain controllers.

can someone help me? give me an input to create a script?

thank you

Andrea


#13
General Support / Re: problem netxms 2.2.3 console
February 13, 2018, 06:31:07 PM
hi, after nxmc -clean the console start without problem

thank you

Andrea
#14
General Support / problem netxms 2.2.3 console
February 12, 2018, 03:25:02 PM
Hi, i have upgraded windows console from 2.2.1 to 2.2.3 and now i have this error on login

"org/betxms/base/GeoLocation"

i have upgraded also a server and webconsole and these work fine

thank you

Andrea
#15
thank you for reply, i have created the script and now works fine

i share my code if anyone is interested

ExternalTable=VMList:instanceColumns=Index;description=Tabella lista VM;separator=|:powershell C:\NetXMS\script\vm.ps1

and this is my script

$s = "Index|Name|State|Status";
$i = 1;
$vm = Get-VM;
ForEach($item in $vm)
{
  $s = $s + "`n" + $i + "|" + $($item.Name) + "|" + $($item.State) + "|" + $($item.Status) ;
  $i = $i +1;
}
echo $s;


regards

Andrea