Ingest attachment Plugin exception :

I have installed Ingest attachment plugin to push the csv data to Kibana monitoring.
However i got some errors while creating pipeline

PUT _ingest/pipeline/attachment
{
"description": "Reports",
"processors": [
{
"attachment": {
"field": "data",
"indexed_chars": "-1"
}
}
]
}

"type": "parse_exception",
"reason": "No processor type exists with name [attachment]"

Can someone help on this topic, Thanks

Did you restart all the nodes?

What gives GET _cat/plugins?v

What are the logs?

BTW using this for a CSV file does not really make sense IMHO as you won't get structured data out of it.

1 Like

I think you have 3 nodes.

You installed the attachment plugin on only one node.

Good point. The documentation is not clear enough.

By default all properties (content, title, name, author, keywords, date, content_type, content_length, language) are extracted. So don't specify "properties" field if you need that.

Otherwise write something like "properties": [ "content", "title" ]

I'm going to fix the documentation.

1 Like

For the record, I opened this PR

If you have an HTTP service which exposes your PDF binary docs somewhere, yes you can add a link to the document.
Can't recall from the top of my head where exactly is the option but if you can't find it by yourself, you can ask on #kibana for help.

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