Docs: Change port to be an integer in htttp input docs
Original commit: elastic/x-pack-elasticsearch@768ec54e03
This commit is contained in:
parent
2d1ce76194
commit
b76c85e7fd
|
@ -73,7 +73,7 @@ Stats] API and enables the `human` attribute:
|
|||
"http" : {
|
||||
"request" : {
|
||||
"host" : "host.domain",
|
||||
"port" : "9200",
|
||||
"port" : 9200,
|
||||
"path" : "/_cluster/stats",
|
||||
"params" : {
|
||||
"human" : "true" <1>
|
||||
|
@ -98,7 +98,7 @@ a username and password to access `myservice`:
|
|||
"http" : {
|
||||
"request" : {
|
||||
"host" : "host.domain",
|
||||
"port" : "9200",
|
||||
"port" : 9200,
|
||||
"path" : "/myservice",
|
||||
"auth" : {
|
||||
"basic" : {
|
||||
|
|
Loading…
Reference in New Issue