| read_rrd | R Documentation |
Reads the metadata in the RRD and adjusts the parameters accordingly in order to expose all RRAs in their entirety.
read_rrd(filename)
filename |
File name |
Returns a named list of data.frames. Each data frame corresponds to an RRA (see read_rra()). The list has names constructed as "consolidation function" + "step" - e.g. "AVERAGE15".
https://oss.oetiker.ch/rrdtool/doc/rrdfetch.en.html
Other rrd functions:
describe_rrd(),
read_rra()
rrd_cpu_0 <- system.file("extdata/cpu-0.rrd", package = "rrd")
describe_rrd(rrd_cpu_0)
cpu <- read_rrd(rrd_cpu_0)
names(cpu)
head(cpu[[1]])
tail(cpu[[1]])
tail(
cpu$AVERAGE60$sys
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.