The PyRRD doc says to call rrd.update(timestamp, value1, value2, ...)
rather than listing each single value in the parameter list, I would like to call update()
with a tuple, already containing the values:
myValueTuple=[10,11,12,13]
rrd.update(timestamp, myValueTuple)
How can I achieve this?