File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070# problematic SSL server certificates. To maintain backwards
7171# compatibility this defaults to false.
7272#
73+ # ignore_ssl_warning
74+ # When SSL certificate validation is enabled (see setting above), this
75+ # setting will allow you to disable security warnings.
76+ #
7377# skip_event
7478# The (optional) skip_event parameter will instruct the check to not
7579# create any event to avoid duplicates with a server side service check.
176180 $http_response_status_code = undef ,
177181 $collect_response_time = true ,
178182 $disable_ssl_validation = false ,
183+ $ignore_ssl_warning = false ,
179184 $skip_event = true ,
180185 $no_proxy = false ,
181186 $check_certificate_expiration = true ,
207212 ' http_response_status_code' => $http_response_status_code ,
208213 ' collect_response_time' => $collect_response_time ,
209214 ' disable_ssl_validation' => $disable_ssl_validation ,
215+ ' ignore_ssl_warning' => $ignore_ssl_warning ,
210216 ' skip_event' => $skip_event ,
211217 ' no_proxy' => $no_proxy ,
212218 ' check_certificate_expiration' => $check_certificate_expiration ,
Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ instances:
5050<% unless instance['disable_ssl_validation'].nil? -%>
5151 disable_ssl_validation: <%= instance['disable_ssl_validation'] %>
5252<% end -%>
53+ <% unless instance['ignore_ssl_warning'].nil? -%>
54+ ignore_ssl_warning: <%= instance['ignore_ssl_warning'] %>
55+ <% end -%>
5356<% unless instance['skip_event'].nil? -%>
5457 skip_event: <%= instance['skip_event'] %>
5558<% end -%>
You can’t perform that action at this time.
0 commit comments