2

It seems that rrdtool comes with functionality to query a range of values at a certain resolution. But can I simply query the value for a certain point in time? How?

Ztyx
  • 14,100
  • 15
  • 78
  • 114

1 Answers1

4

yes

rrdtool fetch -s $x -e $x+1 demo.rrd AVERAGE

will give you the values for a point in time.

Tobi Oetiker
  • 5,167
  • 2
  • 17
  • 23