summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sfiligoi <isfiligoi@ucsd.edu>2013-11-06 23:40:05 +0000
committerIgor Sfiligoi <isfiligoi@ucsd.edu>2013-11-06 23:40:05 +0000
commit6cfc42cbae942b4567dd1fc0568320491c1784f1 (patch)
treeb9f494eece9155f1c19739b5ecdd555657395445
parenta045bfb30a0c1cfccfb34c51114c5185d715e1d4 (diff)
Use RRDRRAFilterAvg again, since it supports the simplified version now
-rw-r--r--src/examples/rrdJFlotFilterRRA.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/examples/rrdJFlotFilterRRA.html b/src/examples/rrdJFlotFilterRRA.html
index 730a7bf..783c943 100644
--- a/src/examples/rrdJFlotFilterRRA.html
+++ b/src/examples/rrdJFlotFilterRRA.html
@@ -108,12 +108,12 @@
//This pages was made to run example3.rra, with RRA steps of
//5 mins (300 seconds), 45 mins (2700s) and 8 hours (28800s).
- var rra_steps_list = [[0,null], [0,1800], // org(5mins), 30mins
- [1,null], [1,21600], // org(45mins), 6h
- [2,null], [2,86400], [2,259200], [2,604800]]; // org(8h), 24h, 3d, 1w
+ var rra_steps_list = [0, [0,1800], // org(5mins), 30mins
+ 1, [1,21600], // org(45mins), 6h
+ 2, [2,86400], [2,259200], [2,604800]]; // org(8h), 24h, 3d, 1w
//Now, we apply those averaging filters.
- rrd_data = new RRDRRAFilterAvgNewSteps(rrd_data,rra_steps_list);
+ rrd_data = new RRDRRAFilterAvg(rrd_data,rra_steps_list);
update_fname()
}