Hello,
I am trying to list fields I have selected into a single field to display in a dashboard.
Currently trying | eval Details = mvappend('src', 'dest') but this only lists the values what I am trying to achieve is listing field name and value for example.
src=192.168.0.1
dest=192.168.0.2
etc
etc
any help appreciated.
thanks
Hi,
you can concatenate strings together with eval.
| eval src="src=" + src
This would result in src field containing "src=192.168.0.1". For a few fields, this would be easy to do.
smurf