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

Topics - ytrasse

#1
General Support / Upgrade from 1.2.17 to 3.7 possible ?
February 02, 2021, 05:25:11 PM
Hi

Is there a possibility to upgrade NetXMS 1.2.7 to 3.7 ?
Maybe step by step. 1.2.7->2.x, 2.x->3.7 ?

We already made a lot of Dashboards, MAPs, Queries in NetXMS 1.2.7.

regards
Leopold

#2
General Support / SNMP Get disk free space
March 03, 2014, 07:06:35 PM
Hello

I want to get the free Disk space on a windows HDD.
But I can find in the host resource mib only "disk size = hrStorageSize" and "disk used space" = hrStorgeUsed.
So I decided to calculate disk free space from paramters above via transfromation script below.
(the DCI = $1 collects the disk size)

sub main()
{
  if ($node->isSNMP)
  {
   transport = CreateSNMPTransport($node);
    if (transport == null)
    {
       return -1;
    }
   
    diskused = SNMPGetValue(transport, ".1.3.6.1.2.1.25.2.3.1.6.2"); // get Disk used D:\
    blocksize = SNMPGetValue(transport, ".1.3.6.1.2.1.25.2.3.1.4.2");  // get Blocksize D:\
    if (diskused != null)
    {
        result = ($1 - diskused) ;       // Disk free = Disk size - Disk used
        result = result / ( 1024 * 1024 ) * blocksize / 1024 ; // transform to GByte
        return ( result );
       
    }
  }
}

But the script is not working. I always get the following error
"Cannot execute script: Incompatible operation"

Do you have any idea what is wrong in my script ?
Are there other possibliies to get the disk free and memory free space via SNMP ?
#3
General Support / WebUI
February 20, 2014, 01:09:57 PM
Hi

Today I installed the WebUi with Windows WebUI-Installer. (1.2.12)
I can acces the WebUI, but there is no Output in the Outputwindow.
With Netxms Console there is everything ok.

I have attacheed the webui logfiles.
Please have I look on it.

best regards
Leopold
#4
General Support / Bind - IP Segemnts
February 20, 2014, 11:15:14 AM
Hello

I have some container groups created under "Infrastructure Services" an I want to bind complete IP segments to such a container.
In version 1.2.9 this was possible. In the newest versions 1.2.11 and 1.2.12 I always got the following error:
"Cannot create object binding: Incompatible operation".

Is binding of complete Ip segments no longer supported or what could be the reason for the error now ?

best regards
Leopold