From a6987c1812fcc03b65da36d00e8737d967d0c53e Mon Sep 17 00:00:00 2001 From: James Phillips Date: Sat, 24 Jun 2017 15:37:52 -0700 Subject: [PATCH] Adds missing tls_skip_verify option to HTTP check example. --- website/source/docs/agent/checks.html.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/source/docs/agent/checks.html.md b/website/source/docs/agent/checks.html.md index d9ae67accb..b4676fed3f 100644 --- a/website/source/docs/agent/checks.html.md +++ b/website/source/docs/agent/checks.html.md @@ -107,7 +107,8 @@ A HTTP check: "check": { "id": "api", "name": "HTTP API on port 5000", - "http": "http://localhost:5000/health", + "http": "https://localhost:5000/health", + "tls_skip_verify": false, "method": "POST", "header": {"x-foo":["bar", "baz"]}, "interval": "10s",