Hi,
I tried searching for a solution to this but I wasn't able to get very far. I'm importing numerous JSON documents that contain various logs (AWS cloudtrail logs in this case) into Elasticsearch and then using Kibana to search them. I am not using logstash for this.
There is a field titled "sourceIPAddress" which is defined in all the index mappings as:
"sourceIPAddress" : {
"type" : "ip"
}
This works for indexing and searching in Kibana, however Kibana states that this field is in conflict.
The index patterns page says that it changes in some indices but I'm unable to find the indices where it doesn't work. The only thing I can think of is that some events have no ' sourceIPAddress' field set at all but that doesn't seem like it should break my ability to use visualize on it.
Can anybody offer some guidance?