Splunk best practices say to use key/value pairs. It also says to wrap values in quotes if they contain spaces. So, let's say I have a raw value of Fred Smith
:
my_key=name my_value="Fred Smith"
That's fine, I've added the quotes. But what if I have a raw value of " Fred Smith"
(note the quotes already present and the presence of a space at the start) - this would yield:
my_key=name my_value="" Fred Smith""
This would be treated as:
my_key=name my_value=""
my_key=Fred my_value=Smith""
What are the best practices for escaping quotes in Splunk values?