Skip to content

Commit 8722e8e

Browse files
georgewallacemergify[bot]
authored andcommitted
fixing thin and zero width white space characters in docs (#18019)
(cherry picked from commit 5f7a6cd)
1 parent c90f085 commit 8722e8e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/reference/event-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mapped_pages:
55

66
# Event API [event-api]
77

8-
This section is targeted for plugin developers and users of Logstash’s Ruby filter. Below we document recent changes (starting with version 5.0) in the way users have been accessing Logstash’s event based data in custom plugins and in the Ruby filter. Note that [Accessing event data and fields](/reference/event-dependent-configuration.md) data flow in Logstash’s config files — using [Field references](/reference/event-dependent-configuration.md#logstash-config-field-references) — is not affected by this change, and will continue to use existing syntax.
8+
This section is targeted for plugin developers and users of Logstash’s Ruby filter. Below we document recent changes (starting with version 5.0) in the way users have been accessing Logstash’s event based data in custom plugins and in the Ruby filter. Note that [Accessing event data and fields](/reference/event-dependent-configuration.md) data flow in Logstash’s config filesusing [Field references](/reference/event-dependent-configuration.md#logstash-config-field-references)is not affected by this change, and will continue to use existing syntax.
99

1010

1111
## Event Object [_event_object]

docs/reference/event-dependent-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Event and data field types:
1919

2020

2121
::::{important}
22-
Some configuration options in Logstash require the existence of fields in order to function. Because inputs generate events, there are no fields to evaluate within the input block—they do not exist yet!
22+
Some configuration options in Logstash require the existence of fields in order to function. Because inputs generate events, there are no fields to evaluate within the input block—they do not exist yet!
2323

2424
[Field references](#logstash-config-field-references), [sprintf format](#sprintf), and [conditionals](#conditionals) do not work in input blocks.
2525
These configuration options depend on events and fields, and therefore, work only within filter and output blocks.

docs/reference/how-logstash-works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For more information about the available filters, see [Filter Plugins](logstash-
3737

3838
Outputs are the final phase of the Logstash pipeline. An event can pass through multiple outputs, but once all output processing is complete, the event has finished its execution. Some commonly used outputs include:
3939

40-
* **elasticsearch**: send event data to Elasticsearch. If you’re planning to save your data in an efficient, convenient, and easily queryable format… Elasticsearch is the way to go. Period. Yes, we’re biased :)
40+
* **elasticsearch**: send event data to Elasticsearch. If you’re planning to save your data in an efficient, convenient, and easily queryable format… Elasticsearch is the way to go. Period. Yes, we’re biased :)
4141
* **file**: write event data to a file on disk.
4242
* **graphite**: send event data to graphite, a popular open source tool for storing and graphing metrics. [http://graphite.readthedocs.io/en/latest/](http://graphite.readthedocs.io/en/latest/)
4343
* **statsd**: send event data to statsd, a service that "listens for statistics, like counters and timers, sent over UDP and sends aggregates to one or more pluggable backend services". If you’re already using statsd, this could be useful for you!

docs/reference/installing-logstash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mapped_pages:
88

99
## Installing from a Downloaded Binary [installing-binary]
1010

11-
The {{ls}} binaries are available from [https://www.elastic.co/downloads](https://www.elastic.co/downloads/logstash). Download the Logstash installation file for your host environment—TAR.GZ, DEB, ZIP, or RPM.
11+
The {{ls}} binaries are available from [https://www.elastic.co/downloads](https://www.elastic.co/downloads/logstash). Download the Logstash installation file for your host environment—TAR.GZ, DEB, ZIP, or RPM.
1212

1313
Unpack the file. Do not install Logstash into a directory path that contains colon (:) characters.
1414

docs/reference/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ These appenders define:
4545
* **triggering policies** that determine *if* a rollover should be performed, and
4646
* **rollover strategy** to defines *how* the rollover should be done.
4747

48-
By default, two triggering policies are defined—time and size.
48+
By default, two triggering policies are defined—time and size.
4949

5050
* The **time** policy creates one file per day.
5151
* The **size** policy forces the creation of a new file after the file size surpasses 100 MB.

0 commit comments

Comments
 (0)