-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,27 @@ | ||
## Configuration | ||
|
||
* `host` - The host location of the logstash server. (`127.0.0.1`) | ||
* `port` - The host port to connect. (`28777`) | ||
* `max_connect_retries` - Max number of attempts to reconnect to logstash before going into silence. `-1` means retry forever. (`4`) | ||
* `ssl_enable` - Enable SSL transfer of logs to logstash. (`false`) | ||
* `ssl_key` - Path location of client private key. Only needed if SSL verify is required on logstash. (No default) | ||
* `ssl_cert` - Path location of client public certificate. Only needed if SSL verify is required on logstash. (No default) | ||
* `ssl_passphrase` - Passphrase for the SSL key. Only needed if the certificate has a passphrase. (No default) | ||
* `host` | ||
* The host location of the logstash server. | ||
* Default: `127.0.0.1` | ||
* `port` | ||
* The host port to connect. | ||
* Default: `28777` | ||
* `max_connect_retries` | ||
* Max number of attempts to reconnect to logstash before going into silence. | ||
* `-1` means retry forever. | ||
* Default: `4` | ||
* `ssl_enable` | ||
* Enable SSL transfer of logs to logstash. | ||
* Default: `false` | ||
* `ssl_key` | ||
* Path location of client private key. | ||
* Only needed if SSL verify is required on logstash. | ||
* No default | ||
* `ssl_cert` | ||
* Path location of client public certificate. | ||
* Only needed if SSL verify is required on logstash. | ||
* No default | ||
* `ssl_passphrase` | ||
* Passphrase for the SSL key. | ||
* Only needed if the certificate has a passphrase. | ||
* No default |