Hello there,
We have an issue on one of our customer sites where a field is mapped as text, float rather than just float. I believe this is causing a grok timeout issue.
The ELK stack is receiving logs from an application and creates a new index each day.
Our in-house setup (same ELK stack version) detects and maps this field as just float and does not have this grok timeout issue. Please see screenshots below
Customer site
},
"spend_time": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
In-house test VM
},
"spend_time": {
"type": "float"
},
Question, am I able to override this by creating a new field in the index template gui as below?
Thanks in advance