diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-12-14 21:53:03 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-12-14 21:53:03 +0000 |
commit | 99a8b2826e15c08972dc34170f70b40abba5922e (patch) | |
tree | 08f49b4b8d2c3507fc55f9867526152b3116265b /applications/luci-statistics/luasrc/statistics/rrdtool.lua | |
parent | ac472f9ebc5ae0b92cec8b619a5b3f2c4a3fc5c1 (diff) |
luci_statistics: Add y_min, y_max, units_exponent options and clean up some graphs
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'applications/luci-statistics/luasrc/statistics/rrdtool.lua')
-rw-r--r-- | applications/luci-statistics/luasrc/statistics/rrdtool.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/applications/luci-statistics/luasrc/statistics/rrdtool.lua b/applications/luci-statistics/luasrc/statistics/rrdtool.lua index e93ac0628a..dbcae9dc6b 100644 --- a/applications/luci-statistics/luasrc/statistics/rrdtool.lua +++ b/applications/luci-statistics/luasrc/statistics/rrdtool.lua @@ -457,6 +457,18 @@ function Graph._generic( self, opts, plugin, plugin_instance, dtype, index ) _ti( _args, self.i18n:title( plugin, plugin_instance, _sources[1].type, instance, opts.title ) ) _ti( _args, "-v" ) _ti( _args, self.i18n:label( plugin, plugin_instance, _sources[1].type, instance, opts.vlabel ) ) + if opts.y_max then + _ti ( _args, "-u" ) + _ti ( _args, opts.y_max ) + end + if opts.y_min then + _ti ( _args, "-l" ) + _ti ( _args, opts.y_min ) + end + if opts.units_exponent then + _ti ( _args, "-X" ) + _ti ( _args, opts.units_exponent ) + end -- store additional rrd options if opts.rrdopts then |