Hi
I created the custom extension using a bash script. But i have some errors in the machine-agent.log -
WARN MonitorOutputHandler - Invalid metric outputname=Server|Component:102|Payments|AppStore,value=0.2
When values is integer all is work properly. Maybe custom extensions are working only with integer values, is it correct?
Hi ,
Yes your understanding is right, make sure you update script such that it will truncate the float part and that should help.
Regards,
Arun
But what i should do if i have this values - 0,00123 or 0,01?
Or add a multiplier to your script, so that 0,00123 returns as 123. Your relative values will all be the same and your graphs will as well, but with this approach, you don't lose any of the precision.
Hi,
Apologies for delay in respponse, You should write script such that it will not have special chars (,) as such and final script output is valid int type, hope that answers your query
Regards,
Arun