Skip to content

Commit a9be628

Browse files
Added cloud link to getting started docs.
1 parent 36f25d8 commit a9be628

File tree

1 file changed

+21
-13
lines changed

1 file changed

+21
-13
lines changed

docs/en/stack/getting-started/get-started-stack.asciidoc

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ search and visualize the data by using {kib}. After you get the basic setup
1616
working, you add {ls} for additional parsing.
1717

1818
To get started, you can install the {stack} on a single VM or even on your
19-
laptop.
20-
19+
laptop.
20+
2121
IMPORTANT: Implementing security is a critical step in setting up the {stack}.
2222
To get up and running quickly with a sample installation, you skip those steps
2323
right now. Before sending sensitive data across the network, make sure you
@@ -45,6 +45,11 @@ distributed storage, search, and analytics engine. It can be used for many
4545
purposes, but one context where it excels is indexing streams of semi-structured
4646
data, such as logs or decoded network packets.
4747

48+
Elasticsearch can be run on your own hardware or using our hosted
49+
Elasticsearch Service on https://www.elastic.co/cloud[Elastic Cloud], which is
50+
available on AWS and GCP. You can
51+
https://www.elastic.co/cloud/elasticsearch-service/signup[try out the hosted service] for free.
52+
4853
To download and install {es}, open a terminal window and use the commands that
4954
work with your system (<<deb, deb>> for Debian/Ubuntu, <<rpm, rpm>> for
5055
Redhat/Centos/Fedora, <<mac, mac>> for OS X, and <<win, win>> for Windows):
@@ -195,7 +200,10 @@ view, and interact with data stored in {es} indices. You can easily perform
195200
advanced data analysis and visualize your data in a variety of charts, tables,
196201
and maps.
197202

198-
To get started, we recommend that you install {kib} on the same server as {es},
203+
If you are running our hosted Elasticsearch Service on https://www.elastic.co/cloud[Elastic Cloud],
204+
then Kibana can be enabled with the https://www.elastic.co/guide/en/cloud/current/ec-enable-kibana.html[flick of a switch].
205+
206+
Otherwise, we recommend that you install {kib} on the same server as {es},
199207
but it is not required. If you install the products on different servers, you'll
200208
need to change the URL (IP:PORT) of the {es} server in the {kib} configuration
201209
file, `config/kibana.yml`, before starting {kib}.
@@ -420,7 +428,7 @@ https://www.elastic.co/downloads/beats[{beats} download] page.
420428

421429
{metricbeat} provides pre-built modules that you can use to rapidly implement
422430
and deploy a system monitoring solution, complete with sample dashboards and
423-
data visualizations, in about 5 minutes.
431+
data visualizations, in about 5 minutes.
424432

425433
In this section, you learn how to run the `system` module to collect metrics
426434
from the operating system and services running on your server. The system module
@@ -507,7 +515,7 @@ PS C:\Program Files\Metricbeat> Start-Service metricbeat
507515
----
508516

509517

510-
{metricbeat} runs and starts sending system metrics to {es}.
518+
{metricbeat} runs and starts sending system metrics to {es}.
511519

512520
[float]
513521
[[visualize-system-metrics]]
@@ -614,7 +622,7 @@ https://www.elastic.co/downloads/logstash[{ls} download] page.
614622

615623
. Extract the contents of the zip file to a directory on your computer, for
616624
example, `C:\Program Files`. Use a short path (fewer than 30 characters) to
617-
avoid running into file path length limitations on Windows.
625+
avoid running into file path length limitations on Windows.
618626

619627
endif::[]
620628

@@ -634,8 +642,8 @@ that listens for {beats} input and sends the received events to the {es} output.
634642

635643
To configure {ls}:
636644

637-
. Create a new {ls} pipeline configuration file called `demo-metrics-pipeline.conf`.
638-
If you installed {ls} as a deb or rpm package, create the file in the {ls}
645+
. Create a new {ls} pipeline configuration file called `demo-metrics-pipeline.conf`.
646+
If you installed {ls} as a deb or rpm package, create the file in the {ls}
639647
`config` directory. The file must contain:
640648
+
641649
--
@@ -672,7 +680,7 @@ output {
672680
+
673681
When you start {ls} with this pipeline configuration, {beats} events are routed
674682
through {ls}, where you have full access to {ls} capabilities for collecting,
675-
enriching, and transforming data.
683+
enriching, and transforming data.
676684

677685
[float]
678686
==== Start {ls}
@@ -708,10 +716,10 @@ sudo service logstash start
708716
bin\logstash.bat -f demo-metrics-pipeline.conf
709717
----------------------------------------------------------------------
710718

711-
TIP: If you receive JVM error messages, check your Java version as shown in
719+
TIP: If you receive JVM error messages, check your Java version as shown in
712720
{logstash-ref}/installing-logstash.html[Installing {ls}].
713721

714-
{ls} starts listening for events from the {beats} input. Next you need to
722+
{ls} starts listening for events from the {beats} input. Next you need to
715723
configure {metricbeat} to send events to {ls}.
716724

717725
[float]
@@ -722,7 +730,7 @@ configure {metricbeat} to send events to {ls}.
722730
the {metricbeat} install directory, or `/etc/metricbeat` for rpm and deb.
723731

724732
Disable the `output.elasticsearch` section by commenting it out, then enable
725-
the `output.logstash` section by uncommenting it:
733+
the `output.logstash` section by uncommenting it:
726734

727735
[source,yaml]
728736
----
@@ -774,7 +782,7 @@ documentation.
774782

775783
To extract the path, add the following Grok filter between the input and output
776784
sections in the {ls} config file that you created earlier:
777-
785+
778786
[source,ruby]
779787
----
780788
filter {

0 commit comments

Comments
 (0)