Skip to content

Commit d80fa0e

Browse files
replace placeholder URLs (#18194)
1 parent 568e3b1 commit d80fa0e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/static/modules.asciidoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ settings, and sets up the netflow index pattern and dashboards:
5959

6060
[source,shell]
6161
----
62-
bin/logstash --modules netflow --setup
62+
bin/logstash --modules netflow --setup
6363
----
6464

6565
The following command runs the Netflow module and overrides the Elasticsearch
6666
`host` setting. Here it's assumed that you've already run the setup step.
6767

6868
[source,shell]
6969
----
70-
bin/logstash --modules netflow -M "netflow.var.elasticsearch.host=es.mycloud.com"
70+
bin/logstash --modules netflow -M "netflow.var.elasticsearch.host=es.example.com"
7171
----
7272

7373

@@ -94,10 +94,10 @@ settings. For example:
9494
----
9595
modules:
9696
- name: netflow
97-
var.elasticsearch.hosts: "es.mycloud.com"
97+
var.elasticsearch.hosts: "es.example.com"
9898
var.elasticsearch.username: "foo"
9999
var.elasticsearch.password: "password"
100-
var.kibana.host: "kb.mycloud.com"
100+
var.kibana.host: "kb.example.com"
101101
var.kibana.username: "foo"
102102
var.kibana.password: "password"
103103
var.input.tcp.port: 5606
@@ -145,7 +145,7 @@ command line option:
145145

146146
Notice that the fully-qualified setting name includes the module name.
147147

148-
You can specify multiple overrides. Each override must start with `-M`.
148+
You can specify multiple overrides. Each override must start with `-M`.
149149

150150
The following command runs the Netflow module and overrides both the
151151
Elasticsearch `host` setting and the `udp.port` setting:
@@ -159,9 +159,9 @@ Any settings defined in the command line are ephemeral and will not persist acro
159159
subsequent runs of Logstash. If you want to persist a configuration, you need to
160160
set it in the `logstash.yml` <<logstash-settings-file,settings file>>.
161161

162-
Settings that you specify at the command line are merged with any settings
162+
Settings that you specify at the command line are merged with any settings
163163
specified in the `logstash.yml` file. If an option is set in both
164-
places, the value specified at the command line takes precedence.
164+
places, the value specified at the command line takes precedence.
165165

166166
[discrete]
167167
[[module-to-cloud]]

docs/static/settings/geoip-database-management-settings.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If `false`, Logstash does not manage GeoIP2 databases and plugins that need a Ge
1616
`xpack.geoip.downloader.endpoint`::
1717

1818
(String) Endpoint URL used to download updates for GeoIP2 databases.
19-
For example, `https://mydomain.com/overview.json`.
19+
For example, `https://example.com/overview.json`.
2020
Defaults to `https://geoip.elastic.co/v1/database`.
2121
Note that Logstash will periodically make a GET request to `${xpack.geoip.downloader.endpoint}?elastic_geoip_service_tos=agree`, expecting the list of metadata about databases typically found in `overview.json`.
2222

0 commit comments

Comments
 (0)