Skip to content

Instantly share code, notes, and snippets.

--- monitoring.rb 2017-02-07 16:48:27.129098149 +0100
+++ monitoring.rb 2017-02-07 17:52:47.013679654 +0100
@@ -16,6 +16,8 @@
ca_path,
truststore_path,
truststore_password,
+ keystore_path,
+ keystore_password,
collection_interval,
collection_timeout_interval)
--- template.cfg.erb 2017-02-07 16:48:05.162151750 +0100
+++ template.cfg.erb 2017-02-07 17:35:33.359201872 +0100
@@ -24,6 +24,10 @@
<% if ca_path %>
cacert => "<%= ca_path %>"
<% end %>
+<% if keystore? %>
+ keystore => "<%= keystore_path %>"
+ keystore_password => "<%= keystore_password %>"
+<% end %>