Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add modules.d layout to getting started and fix Windows command examples #6941

Merged
merged 5 commits into from
May 8, 2018
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libbeat/docs/dashboards.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ command (as described here) or
+{beatname_lc}.yml+ config file.

This requires a Kibana endpoint configuration. If you didn't already configure
a Kibana endpoint, see <<{beatname_lc}-configuration,configured {beatname_uc}>>
a Kibana endpoint, see <<{beatname_lc}-configuration,configure {beatname_uc}>>.

Make sure Kibana is running before you perform this step. If you are accessing a
secured Kibana instance, make sure you've configured credentials as described in
Expand Down Expand Up @@ -73,7 +73,7 @@ to download and install PowerShell.
From the PowerShell prompt, change to the directory where you installed {beatname_uc},
and run:

["source","sh",subs="attributes,callouts"]
["source","sh",subs="attributes"]
----------------------------------------------------------------------
PS > {beatname_lc} setup --dashboards
PS > .{backslash}{beatname_lc}.exe setup --dashboards
----------------------------------------------------------------------
2 changes: 1 addition & 1 deletion libbeat/docs/shared-configuring.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ all non-deprecated options.

endif::[]

See the
TIP: See the
{libbeat}/config-file-format.html[Config File Format] section of the
_Beats Platform Reference_ for more about the structure of the config file.
10 changes: 5 additions & 5 deletions libbeat/docs/shared-template-load.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ to download and install PowerShell.
From the PowerShell prompt, change to the directory where you installed {beatname_uc},
and run:

["source","sh",subs="attributes,callouts"]
["source","sh",subs="attributes"]
----------------------------------------------------------------------
PS > .{backslash}{beatname_lc} setup --template{disable_logstash} -E 'output.elasticsearch.hosts=["localhost:9200"]'
PS > .{backslash}{beatname_lc}.exe setup --template{disable_logstash} -E 'output.elasticsearch.hosts=["localhost:9200"]'
----------------------------------------------------------------------


Expand Down Expand Up @@ -239,12 +239,12 @@ ifdef::allplatforms[]
./{beatname_lc} export template > {beatname_lc}.template.json
----
+
*win*:
*win:*
+
endif::allplatforms[]
["source","sh",subs="attributes"]
----
PS> .{backslash}{beatname_lc}.exe export template --es.version {stack-version} | Out-File -Encoding UTF8 {beatname_lc}.template.json
PS > .{backslash}{beatname_lc}.exe export template --es.version {stack-version} | Out-File -Encoding UTF8 {beatname_lc}.template.json
----

. Install the template:
Expand All @@ -256,7 +256,7 @@ PS> .{backslash}{beatname_lc}.exe export template --es.version {stack-version} |
curl -XPUT -H 'Content-Type: application/json' http://localhost:9200/_template/{beatname_lc}-{stack-version} -d@{beatname_lc}.template.json
----
+
*win*:
*win:*
+
["source","sh",subs="attributes"]
----
Expand Down
Loading