Skip to content

Commit

Permalink
Filebeat: Elasticsearch server fileset: Add paths for Mac OSX and Win…
Browse files Browse the repository at this point in the history
…dows (#8891)

Resolves #8887.

This PR makes the `elasticsearch/server` fileset paths for Mac OSX and Windows consistent with other filesets' paths in the module. This also means that a user can now install Filebeat, enable the Elasticsearch module, and run Filebeat without any errors.
  • Loading branch information
ycombinator authored Nov 6, 2018
1 parent cb4d61e commit aec847a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ https://github.com/elastic/beats/compare/v6.4.0...master[Check the HEAD diff]
- Fix RFC3339 timezone and nanoseconds parsing with the syslog input. {pull}8346[8346]
- Support multiline logs in logstash/log fileset of Filebeat. {pull}8562[8562]
- Fix improperly set config for CRI Flag in Docker Input {pull}8899[8899]
- Just enabling the `elasticsearch` fileset and starting Filebeat no longer causes an error. {pull}8891[8891]

*Heartbeat*

Expand Down
6 changes: 4 additions & 2 deletions filebeat/module/elasticsearch/server/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ var:
- name: paths
default:
- /var/log/elasticsearch/*.log
os.darwin: []
os.windows: []
os.darwin:
- /usr/local/elasticsearch/*.log
os.windows:
- c:/ProgramData/Elastic/Elasticsearch/logs/*.log

ingest_pipeline: ingest/pipeline.json
prospector: config/log.yml

0 comments on commit aec847a

Please sign in to comment.