NetXMS Support Forum

English Support => General Support => Topic started by: stoffmann on March 05, 2020, 04:17:28 PM

Title: Transformation Script in Templates not working NetXMS 3.2
Post by: stoffmann on March 05, 2020, 04:17:28 PM
Hello,

ill try to get a transformation script in a template to work in NetXMS 3.2.
The script is:

sub main()
{
   return $1 / 1024 / 1024 / 1024;
}

The DCI is colleting Total drive sizes for all drives with FileSystem.Total({instance}), and i want them to be in GB.

Every time I test the script I get the error attached. (Cannot execute script: Incompatible operation)

If I use the same transformation directly on the node without Template it works.

What am I doing wrong?




Title: Re: Transformation Script in Templates not working NetXMS 3.2
Post by: Filipp Sudanov on March 06, 2020, 03:15:16 PM
Test from template is actually not yet implemented, that's why the error. Apart from that your DCI should work, whether defined directly on a node, or in a template.

Title: Re: Transformation Script in Templates not working NetXMS 3.2
Post by: stoffmann on March 18, 2020, 08:32:41 AM
Thank You.