Analysing unstructured data

Hi, I have unstructured data that I want to bring into elastic. It contains IP address, in the form 223.58.1.19, and I was wondering what type of analyzer would I use to allow for it to stay together as a single token.

you can try with this
PUT myindex/_mapping/doc
{
"properties": {
"name": {
"type": "text",
"fields": {
"other": {
"type": "keyword"
}
}
}
}
}

When I map the index can I have multiple fields for unstructured data. The data I’m going to put into elastic is text that I have extracted from a pdf.

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