# Ingest pipeline doesnt work

**URL:** https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407
**Category:** Elasticsearch
**Tags:** ingest-pipeline
**Created:** [May 19, 2026, 2:04pm UTC](https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407 "2026-05-19T14:04:45Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Shahar\_Argov](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/shahar_argov/32/147571_2.png) [@Shahar\_Argov](https://discuss.elastic.co/u/Shahar_Argov)
#### Post date: [May 19, 2026, 2:04pm UTC](https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407/1 "2026-05-19T14:04:45Z")

</div>

hi,  
I want to send logs through ingest pipeline to rename them to a different name, now the pipeline does look like its running but the names arent changing.

if i try it with a random file from the index it said it worked and has all the processors check and green but the names just doesnt want to change

i try to deliver logs from hayabusa so every log has a different set of fields

tnx for every help i can get

---

<div class="post-metadata">

### Author: ![stephenb](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/stephenb/32/40856_2.png) [@stephenb](https://discuss.elastic.co/u/stephenb)
#### Post date: [May 19, 2026, 2:49pm UTC](https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407/2 "2026-05-19T14:49:35Z")

</div>

Hi @Shahar_Argov Welcome to the community

We would like to help but you are going to have to provide a lot more detail

What Version are you on?  
What / How are you ingesting the file Agent / Beats / OTEL etc  
How are you trying to rename?  
Please share the ingest pipelines / sample documents etc.  
What do you mean rename.. rename the fields?

Provide more info perhaps someone can help

---

<div class="post-metadata">

### Author: ![Shahar\_Argov](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/shahar_argov/32/147571_2.png) [@Shahar\_Argov](https://discuss.elastic.co/u/Shahar_Argov)
#### Post date: [May 20, 2026, 7:46am UTC](https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407/3 "2026-05-20T07:46:07Z")

</div>

the elastic version is 8.19

i just upload the csv straight to the elastic and use a pipeline to ingest it

i am trying to rename using the rename processor

```auto
[
  {"dot_expander": {"field":"*"}},
  {
    "fingerprint":{
        "fields":["Computer","EventID","Timestamp","RuleTitle"]
        "target_field":"_id",
        "method":"MD5"
    },
    {
        "rename":{
            "ignore_failure": true,
            "ignore_missing": true,
            "field":"Computer",
            "target_field":"host.name"
        }
    },
    {
        "rename":{
            "ignore_failure": true,
            "ignore_missing": true,
            "field":"RuleTitle",
            "target_field":"rulename"
        }
    },

```

this is a sample from the ingest pipeline

i want to change the field name so it will be in sync with all the other indices

---

<div class="post-metadata">

### Author: ![leandrojmp](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/leandrojmp/32/107231_2.png) [@leandrojmp](https://discuss.elastic.co/u/leandrojmp)
#### Post date: [May 20, 2026, 1:19pm UTC](https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407/4 "2026-05-20T13:19:36Z")

</div>

Can you share a sample of your document so this can be replicated?

---

<div class="post-metadata">

### Author: ![Shahar\_Argov](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/shahar_argov/32/147571_2.png) [@Shahar\_Argov](https://discuss.elastic.co/u/Shahar_Argov)
#### Post date: [May 21, 2026, 2:12pm UTC](https://discuss.elastic.co/t/ingest-pipeline-doesnt-work/386407/5 "2026-05-21T14:12:36Z")

</div>

i dont really know how but it started working...

tnx again​🙌
