Hello,
On kibana and when editing the values on an Index Pattern, e.g. from the default 'string' to URL. When modifying the URL template to include a value, e.g. an email address, is there a way to take in this value to ignore special characters? As this works with just text/ numerical values like names and IP's.
'@ : ; '
As an example:
Below is the URL Template
http://localhost:5601/app/kibana#/discover?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-3d,to:now))&_a=(columns:!(_source),index:'An%20indexname',interval:auto,query:(language:kuery,query:'email:{{value}}'),sort:!(!('@timestamp',desc)))
Below is the Label Template
{{value}}
As can see with the modified link to include the value, when taking in the value an error keeps appearing about being unable to load the data due to ..
'KQLSyntaxError': Expected AND, OR, end of input, whitespace but "@" found .....
So is there a way to be able to allow it or get it to ignore this and to be able to take it in as normal valued data?
Thank you!