summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-06-24 02:38:05 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-04 16:32:25 -0400
commit8248275d4e015042a89e3a3d95765193641bfda1 (patch)
tree578e5a8b3c1af6f30e82067a44886e888f34c612 /modules/tozt/manifests
parentf7cb87b82615fbb0d4d6b63f709692e9732aeabf (diff)
downloadpuppet-tozt-8248275d4e015042a89e3a3d95765193641bfda1.tar.gz
puppet-tozt-8248275d4e015042a89e3a3d95765193641bfda1.zip
add tick stack stuff
Diffstat (limited to 'modules/tozt/manifests')
-rw-r--r--modules/tozt/manifests/monitoring.pp22
-rw-r--r--modules/tozt/manifests/tick.pp25
2 files changed, 47 insertions, 0 deletions
diff --git a/modules/tozt/manifests/monitoring.pp b/modules/tozt/manifests/monitoring.pp
index d6a4af3..40a1e82 100644
--- a/modules/tozt/manifests/monitoring.pp
+++ b/modules/tozt/manifests/monitoring.pp
@@ -80,4 +80,26 @@ class tozt::monitoring {
'certbot',
]:
}
+
+ tick::client::plugin {
+ "cpu":
+ opts => {
+ percpu => true,
+ totalcpu => true,
+ collect_cpu_time => false,
+ report_active => false,
+ };
+ "disk":
+ opts => {
+ ignore_fs => ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"],
+ };
+ [
+ "diskio",
+ "kernel",
+ "mem",
+ "processes",
+ "swap",
+ "system",
+ ]:
+ }
}
diff --git a/modules/tozt/manifests/tick.pp b/modules/tozt/manifests/tick.pp
new file mode 100644
index 0000000..cc21c55
--- /dev/null
+++ b/modules/tozt/manifests/tick.pp
@@ -0,0 +1,25 @@
+class tozt::tick {
+ include tick::server
+
+ secret {
+ "/media/persistent/influxdb.htpasswd":
+ source => 'influxdb_htpasswd',
+ owner => 'http';
+ "/media/persistent/chronograf.htpasswd":
+ source => 'chronograf_htpasswd',
+ owner => 'http';
+ }
+
+ nginx::site {
+ "influxdb-tls":
+ source => 'puppet:///modules/tozt/nginx/influxdb-tls.conf',
+ require => Class['certbot'];
+ "influxdb":
+ source => 'puppet:///modules/tozt/nginx/influxdb.conf';
+ "chronograf-tls":
+ source => 'puppet:///modules/tozt/nginx/chronograf-tls.conf',
+ require => Class['certbot'];
+ "chronograf":
+ source => 'puppet:///modules/tozt/nginx/chronograf.conf';
+ }
+}