Skip to content

Commit

Permalink
[7.5] [DOCS] Removed references to left (#60807) (#62706)
Browse files Browse the repository at this point in the history
* [DOCS] Removed references to left (#60807)

* [DOCS] Removed references to left

* Fixed broken build

* Fixed broken build

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
KOTungseth and elasticmachine committed Apr 9, 2020
1 parent e57bfc3 commit 24038f8
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 45 deletions.
4 changes: 1 addition & 3 deletions docs/apm/transactions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ The number of requests per bucket is displayed when hovering over the graph, and
[role="screenshot"]
image::apm/images/apm-transaction-duration-dist.png[Example view of transactions duration distribution graph]

Most of the requests fall into buckets on the left side of the graph,
with a long tail of smaller buckets to the right.
This is a typical distribution, and indicates most of our requests were served quickly - awesome!
This graph shows a typical distribution, and indicates most of our requests were served quickly - awesome!
It's the requests on the right, the ones taking longer than average, that we probably want to focus on.
By clicking on these buckets,
we're presented with a span timeline waterfall showing what a typical request in that bucket was doing.
Expand Down
4 changes: 3 additions & 1 deletion docs/canvas/canvas-elements.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ To make your element look exactly the way you want, apply CSS overrides.

. Next to *Element style*, click *+*, then select *CSS*.

. Enter the *CSS*. For example, to center the Markdown element, enter:
. Enter the *CSS*.
+
For example, to center the Markdown element, enter:
+
[source,js]
--------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/canvas/canvas-present-workpad.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ When you are ready to present your workpad, use and enable the presentation opti
[[view-fullscreen-mode]]
=== View your workpad in fullscreen mode

In the upper left corner, click the *Enter fullscreen mode* icon.
Click the *Enter fullscreen mode* icon.

[role="screenshot"]
image::images/canvas-fullscreen.png[Fullscreen mode]
Expand All @@ -19,7 +19,7 @@ image::images/canvas-fullscreen.png[Fullscreen mode]

Automatically cycle through your workpads pages in fullscreen mode.

. In the upper left corner, click the *Control settings* icon.
. Click the *Control settings* icon.

. Under *Change cycling interval*, select the interval you want to use.
+
Expand Down
12 changes: 10 additions & 2 deletions docs/canvas/canvas-share-workpad.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ When you've finished your workpad, you can share it outside of {kib}.

Create a JSON file of your workpad that you can export outside of {kib}.

. From your workpad, click the *Share workpad* icon in the upper left corner.
. From your workpad, click the *Share workpad* icon.

. Select *Download as JSON*.
+
Expand All @@ -27,7 +27,7 @@ Create a PDF copy of your workpad that you can save and share outside of {kib}.

. If you are using a Gold or Platinum license, enable reporting in your `config/kibana.yml` file.

. From your workpad, click the *Share workpad* icon in the upper left corner, then select *PDF reports*.
. From your workpad, click the *Share workpad* icon, then select *PDF reports*.

. Click *Generate PDF*.
+
Expand All @@ -42,9 +42,13 @@ Create a POST URL that you can use to automatically generate PDF reports using W

For more information, refer to <<automating-report-generation, Automating report generation>>.

<<<<<<< HEAD
. If you are using a Gold or Platinum license, enable reporting in your `config/kibana.yml` file.

. From your workpad, click the *Share workpad* icon in the upper left corner, then select *PDF reports*.
=======
. From your workpad, click the *Share workpad* icon, then select *PDF reports*.
>>>>>>> 809ec97649... [DOCS] Removed references to left (#60807)
. Click *Copy POST URL*.
+
Expand All @@ -57,9 +61,13 @@ image::images/canvas-create-URL.gif[Create POST URL]
beta[] Canvas allows you to create _shareables_, which are workpads that you download and securely share on any website. To customize the behavior of the workpad on your website, you can choose to autoplay the pages or hide the workpad toolbar.
<<<<<<< HEAD
. If you are using a Gold or Platinum license, enable reporting in your `config/kibana.yml` file.
. From your workpad, click the *Share this workpad* icon in the upper left corner, then select *Share on a website*.
=======
. From your workpad, click the *Share this workpad* icon, then select *Share on a website*.
>>>>>>> 809ec97649... [DOCS] Removed references to left (#60807)

. On the *Share on a website* pane, follow the instructions.

Expand Down
12 changes: 6 additions & 6 deletions docs/dev-tools/searchprofiler/getting-started.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
=== Getting Started

The {searchprofiler} is automatically enabled in {kib}. Go to *Dev Tools > Search Profiler*
to get started.
to get started.

{searchprofiler} displays the names of the indices searched, the shards in each index,
and how long it took for the query to complete. To try it out, replace the default `match_all` query
and how long it took for the query to complete. To try it out, replace the default `match_all` query
with the query you want to profile and click *Profile*.

The following example shows the results of profiling the `match_all` query.
Expand All @@ -29,8 +29,8 @@ While the Cumulative Time metric is useful for comparing the performance of your
indices and shards, it doesn't necessarily represent the actual physical query times.
====

You can select the name of the shard and then click *View details* to see more profiling information,
including details about the query component(s) that ran on the shard, as well as the timing
You can select the name of the shard and then click *View details* to see more profiling information,
including details about the query component(s) that ran on the shard, as well as the timing
breakdown of low-level Lucene methods. For more information, see {ref}/search-profile.html#profiling-queries[Profiling queries].

[float]
Expand All @@ -40,10 +40,10 @@ By default, all queries executed by the {searchprofiler} are sent
to `GET /_search`. It searches across your entire cluster (all indices, all types).

If you need to query a specific index or type (or several), you can use the Index
and Type filters at the top left.
and Type filters.

In the following example, the query is executed against the indices `test` and `kibana_1`
and the type `my_type`. This is equivalent making a request to `GET /test,kibana_1/my_type/_search`.

[role="screenshot"]
image::dev-tools/searchprofiler/images/filter.png["Filtering by index and type"]
image::dev-tools/searchprofiler/images/filter.png["Filtering by index and type"]
2 changes: 1 addition & 1 deletion docs/discover/document-data.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ and click image:images/sort-icon.png[].
The first click sorts by ascending order, the second click sorts by descending order, and the third
click removes the field from the sorted fields.

Move a field column:: Hover over the column header and click the move left (<<) or move right icon (>>).
Move a field column:: Hover over the column header and click the (<<) or (>>) icons.
Remove&nbsp;a&nbsp;field&nbsp;column&nbsp;:: Hover over the list of *Specified fields*
and then click *remove*.
Or, use the (x) control in the column header.
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/tutorial-visualizing.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,5 @@ The map now looks like this:
image::images/tutorial-visualize-map-2.png[]

. Navigate the map by clicking and dragging. Use the controls
on the left to zoom the map and set filters.
to zoom the map and set filters.
. *Save* this map with the name `Map Example`.
8 changes: 0 additions & 8 deletions docs/infrastructure/view-metrics.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,3 @@ For complete control over the start and end times, click the start time or end t
=== Refresh the metrics

You can click *Refresh* to manually refresh the metrics.

[float]
[[infra-view-go-to-chart]]
=== Go to a specific chart

The charts available for this component are shown in a list on the left of the page. Click a chart in the list to quickly go to that chart.


15 changes: 7 additions & 8 deletions docs/management/managing-licenses.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@ with no expiration date. For the full list of free features that are included in
the basic license, see https://www.elastic.co/subscriptions[the subscription page].

If you want to try out the full set of platinum features, you can activate a
30-day trial license. Go to *Management > License Management* to view the
30-day trial license. Go to *Management > License Management* to view the
status of your license, start a trial, or install a new license.

NOTE: You can start a trial only if your cluster has not already activated a
trial license for the current major product version. For example, if you have
already activated a trial for v6.0, you cannot start a new trial until
already activated a trial for v6.0, you cannot start a new trial until
v7.0. You can, however, contact `info@elastic.co` to request an extended trial
license.

When you activate a new license level, new features appear in the left sidebar
of the *Management* page.
When you activate a new license level, new features appear in *Management*.

[role="screenshot"]
image::images/management-license.png[]

At the end of the trial period, the platinum features operate in a
<<license-expiration,degraded mode>>. You can revert to a basic license,
extend the trial, or purchase a subscription.
<<license-expiration,degraded mode>>. You can revert to a basic license,
extend the trial, or purchase a subscription.

TIP: If {security-features} are enabled, before you revert to a basic license or
install a gold or platinum license, you must configure Transport Layer Security
Expand All @@ -42,7 +41,7 @@ file that you install in {kib} or by using the

TIP: If you are using a basic or trial license, {security-features} are disabled
by default. In all other licenses, {security-features} are enabled by default;
you must secure the {stack} or disable the {security-features}.
you must secure the {stack} or disable the {security-features}.

[discrete]
[[license-expiration]]
Expand Down Expand Up @@ -97,7 +96,7 @@ cluster.
and start {dfeeds} are disabled.
* All started {dfeeds} are stopped.
* All open {anomaly-jobs} are closed.
* APIs to create and start {dfanalytics-jobs} are disabled.
* APIs to create and start {dfanalytics-jobs} are disabled.
* Existing {anomaly-job} and {dfanalytics-job} results continue to be available
by using {kib} or APIs.

Expand Down
4 changes: 2 additions & 2 deletions docs/spaces/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ the dashboards and saved objects that belong to that space.
{kib} creates a default space for you.
After you create your own
spaces, you're asked to choose a space when you log in to Kibana. You can change your
current space at any time by using the menu in the upper left.
current space at any time by using the menu.

[role="screenshot"]
image::spaces/images/change-space.png["Change current space"]
image::spaces/images/change-space.png["Change current space menu"]

Kibana supports spaces in several ways. You can:

Expand Down
2 changes: 1 addition & 1 deletion docs/user/dashboard.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ In *Edit* mode, you can move, resize, customize, and delete panels to suit your
* To resize a panel, click the resize control on the lower right and drag
to the new dimensions.

* To toggle the use of margins and panel titles, use the *Options* menu in the upper left.
* To toggle the use of margins and panel titles, use the *Options* menu.

* To delete a panel, open the panel menu and select *Delete from dashboard.* Deleting a panel from a
dashboard does *not* delete the saved visualization or search.
Expand Down
4 changes: 2 additions & 2 deletions docs/user/discover.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ image::images/Discover-Start.png[Discover]
=== Set up your index pattern

The first thing to do in *Discover* is to select an <<index-patterns, index pattern>>, which
defines the data you want to explore and visualize. The current index pattern is in the upper left.
defines the data you want to explore and visualize.
If you haven't yet created an index pattern, you can add a <<add-sample-data, sample data set>>,
which has a pre-built index pattern.

Expand Down Expand Up @@ -69,7 +69,7 @@ image::images/filter-field.png[height=317]
The sortable documents table
lists the documents that match your search.
By default, the table includes columns for the time field and the document `_source`.
To zero in on a specific field, click *add* next to the field name in the left sidebar.
To zero in on a specific field, click *add* next to the field name.
For example, if you add the `currency`, `customer_last_name`, and `day_of_week` fields,
the document table includes columns for those three fields.

Expand Down
12 changes: 4 additions & 8 deletions docs/visualize/lens.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Lens supports the following aggregations:
[[drag-drop]]
=== Drag and drop

The data panel in the left column shows the data fields for the selected time period. When
The panel shows the data fields for the selected time period. When
you drag a field from the data panel, Lens highlights where you can drop that field. The first time you drag a data field,
you'll see two places highlighted in green:

Expand All @@ -57,7 +57,7 @@ Lens shows you fields based on the <<index-patterns, index patterns>> you have d
{kib}, and the current time range. When you change the index pattern or time filter,
the list of fields are updated.

To narrow the list of fields you see in the left panel, you can:
To narrow the list of fields, you can:

* Enter the field name in *Search field names*.

Expand Down Expand Up @@ -100,11 +100,7 @@ still allows you to make the change.

Lens allows some customizations of the data for each visualization.

. Change the index pattern.

.. In the left column, click the index pattern name.

.. Select the new index pattern.
. Click the index pattern name, then select the new index pattern.
+
If there is a match, Lens displays the new data. All fields that do not match the index pattern are removed.

Expand Down Expand Up @@ -147,7 +143,7 @@ Drag and drop your data onto the visualization builder pane.

. On the *New Visualization* window, click *Lens*.

. In the left column, select the *kibana_sample_data_ecommerce* index.
. Select the *kibana_sample_data_ecommerce* index.

. Click image:images/time-filter-calendar.png[], then click *Last 7 days*. The list of data fields are updated.

Expand Down

0 comments on commit 24038f8

Please sign in to comment.