HI all,
I have a multi values filter based on a query from Database and the query return string with apostrophes(Acronym).
for example SQ"L.
In the drop-down values it displays the string until the quota which in this case is SQ.
How i configure the multi values to work with string that continues apostrophes.
Thank you in advance
The problem solved, apperently that when splunk displays information it finds info between two apostrophes.
so if the data looks like
id=1 value="ab"c"
when the query will be
index="some_index"
| table id value
the table will be like
1 ab
but the _raw will be noramal
id=1 value="ab"c"
so i simply created a field extraction to get the value.
The problem solved, apperently that when splunk displays information it finds info between two apostrophes.
so if the data looks like
id=1 value="ab"c"
when the query will be
index="some_index"
| table id value
the table will be like
1 ab
but the _raw will be noramal
id=1 value="ab"c"
so i simply created a field extraction to get the value.
Please share the query that builds the drop-down menu.