summaryrefslogtreecommitdiff
path: root/puppet/modules/tor/manifests/munin.pp
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:35 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:35 -0400
commit6af8e4487a9e3f6e4a2c4787dd9cde9a3549527c (patch)
treec2abcb233d4dfd0fe9d0e6d2dd94e720d780234c /puppet/modules/tor/manifests/munin.pp
parent4e4f581e5ad057da6dc38a2e820600227168de57 (diff)
parent27f6b09be549aeebae459259ef37aaa665b7ee7d (diff)
Merge commit '27f6b09be549aeebae459259ef37aaa665b7ee7d' as 'puppet/modules/tor'
Diffstat (limited to 'puppet/modules/tor/manifests/munin.pp')
-rw-r--r--puppet/modules/tor/manifests/munin.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/puppet/modules/tor/manifests/munin.pp b/puppet/modules/tor/manifests/munin.pp
new file mode 100644
index 00000000..4412337a
--- /dev/null
+++ b/puppet/modules/tor/manifests/munin.pp
@@ -0,0 +1,21 @@
+# munin plugins for puppet
+class tor::munin {
+ tor::daemon::control{
+ 'control_port_for_munin':
+ port => 19051,
+ cookie_authentication => 1,
+ cookie_auth_file => '/var/run/tor/control.authcookie',
+ }
+
+ Munin::Plugin::Deploy {
+ config => "user debian-tor\n env.cookiefile /var/run/tor/control.authcookie\n env.port 19051"
+ }
+ munin::plugin::deploy {
+ 'tor_connections':
+ source => 'tor/munin/tor_connections';
+ 'tor_routers':
+ source => 'tor/munin/tor_routers';
+ 'tor_traffic':
+ source => 'tor/munin/tor_traffic';
+ }
+}