mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Merge pull request #24 from kjoconnor/master
Fixed some typos in the documentation
This commit is contained in:
commit
f9a114d78b
5 changed files with 5 additions and 5 deletions
|
@ -80,7 +80,7 @@ The above would internally be represented as this hash: `{ "field1" =>
|
|||
|
||||
Why this syntax? Well frankly it was easier than adding additional grammar to
|
||||
the config language. Logstash may support ruby- or json-like hash syntax in the
|
||||
future, but not otday.
|
||||
future, but not today.
|
||||
|
||||
## Further reading
|
||||
|
||||
|
|
|
@ -30,5 +30,5 @@ The logstash agent has the following flags (also try using the '--help' flag)
|
|||
<dt> --port PORT </dt>
|
||||
<dd> Port on which to start webserver. Default is 9292. </dd>
|
||||
<dt> --backend URL </dt>
|
||||
<dd> The backend URL to use. Default is elasticserach://localhost:9200/ </dd>
|
||||
<dd> The backend URL to use. Default is elasticsearch://localhost:9200/ </dd>
|
||||
</dl>
|
||||
|
|
|
@ -14,7 +14,7 @@ require "logstash/time"
|
|||
# backfilling old data. If you don't get the date correct in your
|
||||
# event, then searching for them later will likely sort out of order.
|
||||
#
|
||||
# In the absense of this filter, logstash will choose a timestamp based on the
|
||||
# In the absence of this filter, logstash will choose a timestamp based on the
|
||||
# first time it sees the event (at input time), if the timestamp is not already
|
||||
# set in the event. For example, with file input, the timestamp is set to the
|
||||
# time of reading.
|
||||
|
|
|
@ -15,7 +15,7 @@ class LogStash::Outputs::Mongodb < LogStash::Outputs::Base
|
|||
config :database, :validate => :string, :required => true
|
||||
|
||||
# The collection to use. This value can use %{foo} values to dynamically
|
||||
# select a collection based on data in th eevent.
|
||||
# select a collection based on data in the event.
|
||||
config :collection, :validate => :string, :required => true
|
||||
|
||||
public
|
||||
|
|
|
@ -8,7 +8,7 @@ class LogStash::Outputs::Stomp < LogStash::Outputs::Base
|
|||
# The address of the STOMP server.
|
||||
config :host, :validate => :string
|
||||
|
||||
# The port to connet to on your STOMP server.
|
||||
# The port to connect to on your STOMP server.
|
||||
config :port, :validate => :number, :default => 61613
|
||||
|
||||
# The username to authenticate with.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue