<div dir="ltr">Hello,<div><br></div><div>I am trying to add timestamps to my graphs. I use a scheduled PowerShell script to execute the rrdtool to generate the graphs. I typically do it in the format of:</div><div><br></div><div><div>$CMD = "C:\path\to\rrdtool.exe" </div><div>$arg1 = "graph" </div><div>$arg2 = "graph.png" </div><div>$arg3 = "--title"</div><div>$arg4 = "Graph title" </div><div>$arg5 = "--width" </div><div>$arg6 = "400"</div><div><div>$arg7 = "--vertical-label" </div><div>$arg8 = "Percentage" </div><div>$arg9 = "--rigid" </div><div>$arg10 = "DEF:sload=rrdfile.rrd:load:LAST" </div><div>$arg11 = "DEF:sservers=rrdfile.rrd:servers:LAST" </div><div>$arg12 = "DEF:balanced=rrdfile.rrd:lbo:LAST" </div></div><div>$arg13 = "GPRINT:sservers:LAST:%4.lf\j"<br></div><div><br></div><div>& $CMD $arg1 $arg2 $arg3 $arg4 $arg5 $arg6 $arg7 $arg8 $arg9 $arg10 $arg11 $arg12 $arg13<br></div><div><br></div><div>I googled around and found someone adding <b>"Date\: $(date "+%F %T" | sed 's/:/\\:/g')\r" </b>but not sure how this would get added in the context above.</div><div><br>Any suggestions?</div><div><br></div><div>Thanks,</div><div><br></div><div>Devante</div><div><br></div><div> </div></div></div>