Hi Everyone,
I have two indexes which are automatically generated by an application which I cannot modify.
Index one has two fields:
{
"mappings": {
"properties": {
"src.ip.address": {
"type": "ip"
},
"dst.ip.address": {
"type": "ip"
}
}
}
}
Index two has two fields:
{
"mappings": {
"properties": {
"SOURCE_IP_ADDRESS": {
"type": "ip"
},
"DESTINATION_IP_ADDRESS": {
"type": "ip"
}
}
}
}
I there a way I can modify on of the two kibana index pattern to be able to add an alias or something else to be able to filter for those values?
To be more speficic if I filter for src.ip.address in a dashboard made with both the index patterns, I also filter for SOURCE_IP_ADDRESS on th other index (since they have the same value).
Thanks!
A.