Hi @rmorgan466,
Can you try with Rename by regex transformation like described on link:
Regex for your case:
.*host="([^"]*)".*
Breakdown: .* - matches anything host=" - after that it looks for string host=" ([^"]*) - this is value that you will capture in first group (marked with $1). It captures everything till first double quote "
.* - matches anything after that