Does anyone know why server.save doesn’t return a 1 when trying to save this object?
_data = {“name” : _plotName, “Height”:array(1, 0.0), “TimeStamp”:array(1, getPlotlyTimestamp())};
if (server.save(_data)){server.log(“DataTable saved.”);}
I’m using a free subscription to plot.ly and I store about an hour (roughly 60 samples) of data to send to plot.ly in batches (to get around the 1000 api call / 24hour limit). I was trying to save the current data so that it can persist across agent/device reboots.