<div dir="ltr">Greetings, I'm trying to do a php script to flat some graphics of mine, for example I have a graph showing 46.33M and I want it to be cut down to 46M precisely. So I did some coding on exporting the XML, editing it and reimporting the dump. So far so good. Here my question: <div><br></div><div>I exported the data of a single time, for example:</div><div><font face="monospace, monospace"><br></font></div><div><b><font face="monospace, monospace"> rrdtool fetch myrrd.rrd AVERAGE -s '20160608 18:00' -e '20160608 18:00'</font></b></div><div><br></div><div>and I get the values: <b>1465409100: 3.5134258945e+05 3.2815561127e+06</b></div><div><br></div><div>Converting them to MB would be: </div><div><font face="monospace, monospace"><br></font></div><div><div><font face="monospace, monospace">>>> float("3.5134258945e+05") / 1000 / 1000 * 8</font></div><div><b><font face="monospace, monospace">2.8107407156000006</font></b></div><div><font face="monospace, monospace">>>> float("3.2815561127e+06") / 1000 / 1000 * 8</font></div><div><b><font face="monospace, monospace">26.2524489016</font></b></div><div><br></div><div>When I use rrdgraph , the result is diferent. It gives me 3.90M and 29.27M to the exactly same time, from the same rrdfile. I'm doing the graph with the following options:</div><div><font color="#0000ff"><br></font></div><div><font face="monospace, monospace" color="#0000ff">--start '20160608 18:00'<br></font></div><div><font face="monospace, monospace" color="#0000ff">--end '20160608 1800'</font></div><div><font face="monospace, monospace" color="#0000ff">DEF:in=myrrd:in:AVERAGE<br></font></div><div><font face="monospace, monospace" color="#0000ff">DEF:out=myrrd:out:AVERAGE<br></font></div><div><font face="monospace, monospace" color="#0000ff"><br></font></div><div><font face="monospace, monospace" color="#0000ff">CDEF:bits_in=in,8,*<br></font></div><div><font face="monospace, monospace" color="#0000ff">CDEF:bits_out=out,8,*<br></font></div><div><font face="monospace, monospace" color="#0000ff"><br></font></div><div><font face="monospace, monospace" color="#0000ff">AREA:bits_in#00FF00:RX<br></font></div><div><font face="monospace, monospace"><font color="#0000ff">LINE1:bits_out#0000FF:TX</font><br></font></div><div><br></div><div><br></div><div>Pretty simple graph, showing the average traffic of input and output, multiplied by 8 to get the value into megabits per second, since the rrd data is fetched from InOctets and OutOctes via snmp.</div><div><br></div><div><br></div><div>I wonder if some of you would know why the rrdfetch is not showing the same data as the rrdgraph.</div><div><br></div><div>Thanks in advance.</div><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div>- Arch Linux - Usuário Linux #470599.   LPI ID: LPI000187143</div><div>- Desenvolvedor Java/Python/Web</div><div>- +55 (88) 9713-7657</div><div>- Bacharel em Sistemas de Informação pela Estácio ( <a href="http://www.estacio.br/" target="_blank">http://www.estacio.br/</a> )</div><div>- Irc: lokidarkeden at <a href="http://freenode.com" target="_blank">freenode.com</a></div><div>- <a href="http://www.leandrocosta.pro.br" target="_blank">http://www.leandrocosta.pro.br</a></div></div></div></div>
</div></div>