1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Ruby plugins: apply code changes as suggested by "rubocop --auto-correct"

This commit is contained in:
Lars Kruse 2020-08-25 17:06:15 +02:00
parent b0b39b018e
commit 809639ab65
33 changed files with 904 additions and 910 deletions

View file

@ -35,21 +35,19 @@ You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#%# family=auto
#%# capabilities=autoconf
=end
module Munin
class ThinProcessMemory
# run main method
def run
instances = get_pids()
instances = get_pids
instances.each do |instance|
pid, port = instance.split("|")
rss = (pid_rss(pid).to_i) / 1024
pid, port = instance.split('|')
rss = pid_rss(pid).to_i / 1024
puts "thin_#{port}.value #{rss}"
end
end
@ -57,10 +55,10 @@ module Munin
# only get the memory for each pid
def pid_rss(pid)
res = `grep "VmRSS" /proc/#{pid}/status`.split[1]
if res.match("cannot access")
return nil
if res.match('cannot access')
nil
else
return res
res
end
end
@ -70,7 +68,7 @@ module Munin
end
def autoconf
get_pids().length > 0
get_pids.length > 0
end
end
end
@ -78,26 +76,26 @@ end
mpm = Munin::ThinProcessMemory.new
case ARGV[0]
when "config"
puts "graph_title Thin Memory"
puts "graph_vlabel RSS"
puts "graph_category webserver"
puts "graph_args --base 1024 -l 0"
puts "graph_scale yes"
puts "graph_info Tracks the size of individual thin processes"
when 'config'
puts 'graph_title Thin Memory'
puts 'graph_vlabel RSS'
puts 'graph_category webserver'
puts 'graph_args --base 1024 -l 0'
puts 'graph_scale yes'
puts 'graph_info Tracks the size of individual thin processes'
mpm.get_pids.each do |instance|
pid, port = instance.split("|")
pid, port = instance.split('|')
puts "thin_#{port}.label thin_#{port}"
puts "thin_#{port}.info Process memory"
puts "thin_#{port}.type GAUGE"
puts "thin_#{port}.min 0"
end
when "autoconf"
when 'autoconf'
if mpm.autoconf
puts "yes"
puts 'yes'
exit 0
end
puts "no"
puts 'no'
exit 0
else
mpm.run