Skip to content

Commit 92ce879

Browse files
authored
docs(humio_logs sink): Fix default host value (#2683)
1 parent 29735f0 commit 92ce879

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.meta/sinks/humio_logs.toml.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ description = "Your Humio ingestion token."
5656

5757
[sinks.humio_logs.options.host]
5858
type = "string"
59+
default = "https://cloud.humio.com"
5960
examples = ["http://myhumiohost.com"]
60-
required = false
6161
description = "The optional host to send Humio logs to."
6262

6363
<%= render("_partials/fields/_encoding_options.toml",

config/vector.spec.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6571,7 +6571,7 @@ require('custom_module')
65716571
# The optional host to send Humio logs to.
65726572
#
65736573
# * optional
6574-
# * no default
6574+
# * default: "https://cloud.humio.com"
65756575
# * type: string
65766576
host = "http://myhumiohost.com"
65776577

website/docs/reference/sinks/humio_logs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
last_modified_on: "2020-05-21"
2+
last_modified_on: "2020-05-25"
33
delivery_guarantee: "at_least_once"
44
component_title: "Humio Logs"
55
description: "The Vector `humio_logs` sink batches `log` events to Humio via the HEC API."
@@ -61,7 +61,7 @@ The Vector `humio_logs` sink
6161
type = "humio_logs" # required
6262
inputs = ["my-source-or-transform-id"] # required
6363
healthcheck = true # optional, default
64-
host = "http://myhumiohost.com" # optional, no default
64+
host = "https://cloud.humio.com" # optional, default
6565
token = "${HUMIO_TOKEN}" # required
6666

6767
# Batch
@@ -424,7 +424,7 @@ Enables/disables the sink healthcheck upon start.
424424
</Field>
425425
<Field
426426
common={false}
427-
defaultValue={null}
427+
defaultValue={"https://cloud.humio.com"}
428428
enumValues={null}
429429
examples={["http://myhumiohost.com"]}
430430
groups={[]}

0 commit comments

Comments
 (0)