Skip to content

Commit

Permalink
x509check alarm fix (#5645)
Browse files Browse the repository at this point in the history
##### Summary

rename

> health/health.d/sslcheck.conf → health/health.d/x509check.conf

**Why**

sslcheck module (#5365) was removed(#5626) because of memory leak bug (#5624).

The module was rewritten in go (#5631, netdata/go.d.plugin#166). New module name - `x509check`. 

This PR changes name of the alarm.
  • Loading branch information
ilyam8 committed Mar 15, 2019
1 parent bef5947 commit 2cb3993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion health/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ dist_healthconfig_DATA = \
health.d/retroshare.conf \
health.d/softnet.conf \
health.d/squid.conf \
health.d/sslcheck.conf \
health.d/stiebeleltron.conf \
health.d/swap.conf \
health.d/tcp_conn.conf \
Expand All @@ -79,5 +78,6 @@ dist_healthconfig_DATA = \
health.d/udp_errors.conf \
health.d/varnish.conf \
health.d/web_log.conf \
health.d/x509check.conf \
health.d/zfs.conf \
$(NULL)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

template: sslcheck_days_until_expiration
on: sslcheck.time_until_expiration
calc: $time
template: x509check_days_until_expiration
on: x509check.time_until_expiration
calc: $expiry
units: seconds
every: 60s
warn: $this < $days_until_expiration_warning*24*60*60
Expand Down

0 comments on commit 2cb3993

Please sign in to comment.