From 591f6ca3ef6c8dd720b76aa9d54f39b0157c4424 Mon Sep 17 00:00:00 2001 From: akbarahmed Date: Tue, 19 Jul 2016 10:55:46 -0700 Subject: [PATCH] Unnest TaggedAddresses. Add sentence to mention that multiple Checks may be specified as an array. Closes hashicorp/consul#2176 --- website/source/docs/agent/http/catalog.html.markdown | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/website/source/docs/agent/http/catalog.html.markdown b/website/source/docs/agent/http/catalog.html.markdown index ab402e557e..55879a8ba6 100644 --- a/website/source/docs/agent/http/catalog.html.markdown +++ b/website/source/docs/agent/http/catalog.html.markdown @@ -40,6 +40,9 @@ body must look something like: "Datacenter": "dc1", "Node": "foobar", "Address": "192.168.10.10", + "TaggedAddresses": { + "wan": "127.0.0.1" + }, "Service": { "ID": "redis1", "Service": "redis", @@ -48,9 +51,6 @@ body must look something like: "v1" ], "Address": "127.0.0.1", - "TaggedAddresses": { - "wan": "127.0.0.1" - }, "Port": 8000 }, "Check": { @@ -90,6 +90,9 @@ check, instead of a node level health check. The `Status` must be one of `unknown`, `passing`, `warning`, or `critical`. The `unknown` status is used to indicate that the initial check has not been performed yet. +Multiple checks can be provided by replacing `Check` with `Checks` and sending +an array of `Check` objects. + It is important to note that `Check` does not have to be provided with `Service` and vice versa. A catalog entry can have either, neither, or both.