Hi, I have the following search where I create two fields which has a line break (Topic and value):
index="example" sourcetype="trial"
| stats avg(availability) as value, dc(name) as Number
| eval value = tostring(value) + ":" + tostring(Number) + " of " + tostring(Number) | makemv delim=":" value
| eval Topic="C" + ":" + "Serviceplans" | makemv delim=":" Topic
| eval Time="10/2019"
| xyseries Topic Time value
When I do this xyseries will remove the linebreak from field Topic but won't do the same for value. I wanted that both fields keep the line break.
Thanks!
↧