There's no way to do this with Kibana. However, you can do this at the elasticsearch level with a tokeniser. You'd set up something like this:
$ curl -XPUT localhost:9200/testindex/ -d '
{
"settings":{
"index":{
"analysis":{
"analyzer":{
"case_insensitive_analyser":{
"tokenizer":"case_insensitive",
"filter":"uppercase"
}
}
}
}
},
"mappings":{
"test":{
"properties":{
"exception":{
"analyzer":"case_insensitive_analyser",
"type":"string"
}
}
}
}
}
which I borrowed from this question: How to setup a tokenizer in elasticsearch