2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-06-03 23:15:16 +00:00
|
|
|
|
2011-11-28 03:26:59 +00:00
|
|
|
module("luci.statistics.rrdtool.definitions.df", package.seeall)
|
2008-05-30 00:26:18 +00:00
|
|
|
|
|
|
|
function rrdargs( graph, plugin, plugin_instance, dtype )
|
|
|
|
|
|
|
|
return {
|
2011-11-28 03:26:59 +00:00
|
|
|
title = "%H: Disk space usage on %di",
|
|
|
|
vlabel = "Bytes",
|
2008-05-30 00:26:18 +00:00
|
|
|
per_instance = true,
|
2011-11-28 03:26:59 +00:00
|
|
|
number_format = "%5.1lf%sB",
|
2008-05-30 00:26:18 +00:00
|
|
|
|
|
|
|
data = {
|
2016-03-25 08:04:58 +00:00
|
|
|
instances = {
|
|
|
|
df_complex = { "free", "used", "reserved" }
|
2008-05-30 00:26:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
options = {
|
2016-03-25 08:04:58 +00:00
|
|
|
df_complex_free = {
|
2011-11-28 03:26:59 +00:00
|
|
|
color = "00ff00",
|
|
|
|
overlay = false,
|
|
|
|
title = "free"
|
2008-05-30 00:26:18 +00:00
|
|
|
},
|
|
|
|
|
2016-03-25 08:04:58 +00:00
|
|
|
df_complex_used = {
|
2008-05-30 00:26:18 +00:00
|
|
|
color = "ff0000",
|
2011-11-28 03:26:59 +00:00
|
|
|
overlay = false,
|
|
|
|
title = "used"
|
2016-03-25 08:04:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
df_complex_reserved = {
|
|
|
|
color = "0000ff",
|
|
|
|
overlay = false,
|
|
|
|
title = "reserved"
|
2008-05-30 00:26:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|