Can you explain the frustration you had when trying to extract? Assuming that pluginText is already extracted into a field, you can do something like | spath input=pluginText ``` this gives you a field plugin_output ```
| rex field=plugin_output "Computer SerialNumber: (?<serialNumber>.+)" Alternatively, extract all key-value pairs from plugin_output using | spath input=pluginText ``` this gives you a field plugin_output ```
| rename _raw AS saved_raw, plugin_output AS _raw
| kv kvdelim=" : "
| rename saved_raw as _raw
... View more