summaryrefslogtreecommitdiffstats
path: root/rrdtool-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rrdtool-model.lua')
-rw-r--r--rrdtool-model.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/rrdtool-model.lua b/rrdtool-model.lua
index 1cc032f..9e9295f 100644
--- a/rrdtool-model.lua
+++ b/rrdtool-model.lua
@@ -91,3 +91,14 @@ end
function getrrdlist()
return list_files(databases)
end
+
+function createnewrrd()
+ local newdb = {}
+ newdb.name = cfe({label="Name",value="mydb.rrd",descr="The name of the RRD you want to create. RRD files should end with the extension .rrd. However, RRDtool will accept any filename."})
+ newdb.start = cfe({label="Start",value="",descr="Specifies the time in seconds since 1970-01-01 UTC when the first value should be added to the RRD. RRDtool will not accept any data timed before or at the time specified."})
+ newdb.step = cfe({label="Step",value="",descr="Specifies the base interval in seconds with which data will be fed into the RRD."})
+ newdb.ds = cfe({label="Data stores",value="",descr="DS:ds-name:GAUGE | COUNTER | DERIVE | ABSOLUTE:heartbeat:min:max \
+DS:ds-name:COMPUTE:rpn-expression"})
+ newdb.rra = cfe({label="Round Robin Archive",value="",descr="RRA:AVERAGE | MIN | MAX | LAST:xff:steps:rows"})
+ return {value=newdb}
+end