|
48 | 48 | # problematic SSL server certificates. To maintain backwards |
49 | 49 | # compatibility this defaults to false. |
50 | 50 | # |
51 | | -# skip_event |
| 51 | +# skip_event |
52 | 52 | # The (optional) skip_event parameter will instruct the check to not |
53 | 53 | # create any event to avoid duplicates with a server side service check. |
54 | 54 | # This defaults to True because this is being deprecated. |
55 | 55 | # (See https://github.com/DataDog/dd-agent/blob/master/checks/network_checks.py#L178-L180) |
56 | 56 | # |
57 | | -# check_certificate_expiration |
58 | | -# days_warning |
59 | | -# days_critical |
| 57 | +# no_proxy |
| 58 | +# The (optional) no_proxy parameter would bypass any proxy settings enabled |
| 59 | +# and attempt to reach the the URL directly. |
| 60 | +# If no proxy is defined at any level, this flag bears no effect. |
| 61 | +# Defaults to False. |
| 62 | +# |
| 63 | +# check_certificate_expiration |
| 64 | +# days_warning |
| 65 | +# days_critical |
60 | 66 | # The (optional) check_certificate_expiration will instruct the check |
61 | 67 | # to create a service check that checks the expiration of the |
62 | 68 | # ssl certificate. Allow for a warning to occur when x days are |
63 | 69 | # left in the certificate, and alternatively raise a critical |
64 | 70 | # warning if the certificate is y days from the expiration date. |
65 | 71 | # The SSL certificate will always be validated for this additional |
66 | 72 | # service check regardless of the value of disable_ssl_validation |
67 | | -# |
| 73 | +# |
68 | 74 | # headers |
69 | 75 | # The (optional) headers parameter allows you to send extra headers |
70 | 76 | # with the request. This is useful for explicitly specifying the host |
|
141 | 147 | $collect_response_time = true, |
142 | 148 | $disable_ssl_validation = false, |
143 | 149 | $skip_event = true, |
| 150 | + $no_proxy = false, |
144 | 151 | $check_certificate_expiration = undef, |
145 | 152 | $days_warning = undef, |
146 | 153 | $days_critical = undef, |
|
165 | 172 | 'collect_response_time' => $collect_response_time, |
166 | 173 | 'disable_ssl_validation' => $disable_ssl_validation, |
167 | 174 | 'skip_event' => $skip_event, |
| 175 | + 'no_proxy' => $no_proxy, |
168 | 176 | 'check_certificate_expiration' => $check_certificate_expiration, |
169 | 177 | 'days_warning' => $days_warning, |
170 | 178 | 'days_critical' => $days_critical, |
|
0 commit comments