# Several configuration files for one pipeline

**URL:** https://discuss.elastic.co/t/several-configuration-files-for-one-pipeline/328640
**Category:** Logstash
**Created:** [March 27, 2023, 6:34pm UTC](https://discuss.elastic.co/t/several-configuration-files-for-one-pipeline/328640 "2023-03-27T18:34:23Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Daniel\_Lopez](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/daniel_lopez/32/50639_2.png) [@Daniel\_Lopez](https://discuss.elastic.co/u/Daniel_Lopez)
#### Post date: [March 27, 2023, 6:34pm UTC](https://discuss.elastic.co/t/several-configuration-files-for-one-pipeline/328640/1 "2023-03-27T18:34:23Z")

</div>

I'm trying to reduce high cpu consumption in our logstash, so i decide to join several pipelines in one and run these configuration files as only one pipeline

I'm testing with only two files without filter, only input and output and i don't get any messsage in log and it is not indexing any data, could some help me to debug it?

First File: 10-input.conf

```auto
input {
  http {
        port => 6969
        type => "http"
        user => "xxxx"
        password => "xxxx"
   }
}

```

Second File: 30-output.conf

```auto
output {
         elasticsearch {
            
            hosts => ["https://x.x.x.x:9200"]

            user => 'test'
            password => 'xxxxx'
            index => "test"
            ilm_enabled => "false"
            manage_template => "false"
	    cacert => 'xxxx'
     
        }

}

```

And I'm running them as only one pipeline, if i setup these files in different pipelines, I get data in the index, but joining them into one pipeline doesn't work. any idea?

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [April 24, 2023, 6:34pm UTC](https://discuss.elastic.co/t/several-configuration-files-for-one-pipeline/328640/2 "2023-04-24T18:34:49Z")

</div>

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