# HG changeset patch # User Kim Alvefur # Date 1444243280 -7200 # Node ID effd909d05b0ea07d339d4a42f0c292a4f520a5e # Parent 777554cf1ae151198b1c8146729ceef0b35daa29 mod_munin: Strip mod_measure_ and mod_statistics_ from section names diff -r 777554cf1ae1 -r effd909d05b0 mod_munin/mod_munin.lua --- a/mod_munin/mod_munin.lua Sun Oct 04 23:28:26 2015 +0200 +++ b/mod_munin/mod_munin.lua Wed Oct 07 20:41:20 2015 +0200 @@ -93,6 +93,11 @@ elseif host == "*" then host = nil; end + if sect:find"^mod_measure_.") then + sect = sect:sub(13); + elseif sect:find"^mod_statistics_.") then + sect = sect:sub(16); + end key = clean_fieldname(s_format("%s_%s_%s", host or "global", sect, typ)); if not meta:get(key) then