Logstash.config.sourceloader] No configuration found in the configured sources

I am unable to get multiple pipelines to work on Windows
Individually I am able to run the config files, but not from inside the pipelines.yml

LOG -
[2018-07-18T10:31:14,430][DEBUG][logstash.config.source.multilocal] Reading pipeline configurations from YAML {:location=>"D:/ES/logstash-6.2.3/config/pipelines.yml"}
[2018-07-18T10:31:14,772][DEBUG][logstash.api.service ] [api-service] start
[2018-07-18T10:31:14,872][ERROR][logstash.config.sourceloader] No configuration found in the configured sources.

pipelines.yml
- pipeline.id: ep-log
  path.config: "D:/ES/logstash-6.2.3/bin/ep-log.conf"
- pipeline.id: ep-sub
  path.config: "D:/ES/logstash-6.2.3/bin/ep-sub.conf"

OK, I got the multi pipelines working by moving the config files to the same folder as the yml file. And removing the paths from yml

- pipeline.id: eplog 
  path.config: "eplog.conf"
- pipeline.id: epsub
  path.config: "epsub.conf"

(still need to figure out why the paths are not working)

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.