Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PyRRD doc は、パラメーター リストに個々の値をリストするのではなく、呼び出すように言っていrrd.update(timestamp, value1, value2, ...) ますupdate()。既に値が含まれているタプルで呼び出したいと思います。
rrd.update(timestamp, value1, value2, ...)
update()
myValueTuple=[10,11,12,13] rrd.update(timestamp, myValueTuple)
どうすればこれを達成できますか?