Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. define munin::plugin($to) {
  2.  
  3.   file { "$munin::params::plugin_dest/$name":
  4.     ensure => "$munin::params::plugin_source/$to",
  5.     notify => Service['munin-node'],
  6.   }
  7.  
  8. }
  9.  
  10.   munin::plugin { 'redis':
  11.     to => [ 'mysql_bytes', 'mysql_queries', 'mysql_threads', 'mysql_slowqueries' ],
  12. }