Ztyx
Ztyx

Reputation: 14908

How can I query a single value, at a certain time, from rrdtool?

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?

Upvotes: 2

Views: 711

Answers (1)

Tobi Oetiker
Tobi Oetiker

Reputation: 5450

yes

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

will give you the values for a point in time.

Upvotes: 4

Related Questions