summaryrefslogtreecommitdiffstats
path: root/collectors/python.d.plugin/sslcheck/README.md
diff options
context:
space:
mode:
authorPeter Thurner <p-thurner@users.noreply.github.com>2019-03-13 10:14:22 +0100
committerIlya Mashchenko <ilyamaschenko@gmail.com>2019-03-13 12:14:22 +0300
commit97699c5c60342be372d776da4829167adfdfc133 (patch)
tree97c0253c14fcee59b470b42b2ffc717e4c99ab43 /collectors/python.d.plugin/sslcheck/README.md
parent263ec643b26ddd4e8c9ff61f64c721f09f9a6964 (diff)
sslcheck module: (remote) SSL certificate expiry time check (#5365)
* added WIP ssl certificate expiry time check plugin * fixing bugs * more bugfixes * cleaned up * fixed graphing * More pretty readme * cleaned up style * change author * simplify * add days_until_expiration_warn and correctly calc seconds * update config * config update * readme update * return false from check if module failed to collect data * set default update_every to 60 * add alarm * add sslcheck to makefile * fix indentation * add crit to alarm * update conf * update readme * add days_until_expiration_critical * change default days_until_expiration_warning to 14 * minor
Diffstat (limited to 'collectors/python.d.plugin/sslcheck/README.md')
-rw-r--r--collectors/python.d.plugin/sslcheck/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/collectors/python.d.plugin/sslcheck/README.md b/collectors/python.d.plugin/sslcheck/README.md
new file mode 100644
index 0000000000..1c5dd6da4e
--- /dev/null
+++ b/collectors/python.d.plugin/sslcheck/README.md
@@ -0,0 +1,21 @@
+# SSL certificate expiry check
+
+Checks the time until a remote SSL certificate expires.
+
+## Requirements
+
+None
+
+### configuration
+
+```yaml
+update_every : 60
+
+example_org:
+ host: 'example.org'
+
+my_site_org:
+ host: 'my-site.org'
+ days_until_expiration_warning: 10
+ days_until_expiration_critical: 1
+```