luci-app-statistics: fix whitespaces in rrdtool definitions
[project/luci.git] / applications / luci-app-statistics / luasrc / statistics / rrdtool / definitions / ping.lua
index f0a59481695e797ef9e61a49db4dd5f1772acf9e..5b575bfff268c394537c811213c0cee3d3e08d86 100644 (file)
@@ -4,6 +4,7 @@
 module("luci.statistics.rrdtool.definitions.ping", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
+
        return {
                -- Ping roundtrip time
                { title = "%H: ICMP Round Trip Time",
@@ -23,16 +24,6 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
                        types   = { "ping_droprate" },
                        options = { ping_droprate = {
                                noarea = true, overlay = true, title = "%di" } }
-               } },
-
-               -- Ping standard deviation
-               { title = "%H: ICMP Standard Deviation",
-                 vlabel = "ms",
-                 number_format = "%5.2lf ms",
-                 data = {
-                       types   = { "ping_stddev" },
-                       options = { ping_stddev = {
-                               noarea = true, overlay = true, title = "%di" } }
-               } },
+               } }
        }
 end