Hi All!
I'm trying to call RRDTool from a powershell script but doesn't work as expected:
I've got four integers named $Count $Abort $Active $Commit
The syntax to add values into the round robin db of RRDTool with four values is: rrdtool update N:value1:value2:value3:value4
I call rrdtool as this: & rrdtool update N:$Count:$Abort:$Active:$Commit
rrdtool thinks it gets the argument: N:$Commit as if & rrdtool update N:$Commit
I've tried all kind of different combinations of ', " ,`,´ to get it right...
Please, what is wrong?