- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
psomeshwar
Path Finder
03-18-2024
02:15 PM
I currently have two different fields
Host Domain
F32432KL34 domain.com
I wish to combine these into one field that shows the following:
How would you suggest going about this?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
isoutamo

SplunkTrust
03-18-2024
02:26 PM
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

burwell

SplunkTrust
03-18-2024
02:24 PM
How about
| eval MyNewField=Host+Domain
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
isoutamo

SplunkTrust
03-18-2024
02:26 PM
Small fix
| eval MyNewField=Host+"@"+Domain
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

burwell

SplunkTrust
03-22-2024
12:11 PM
Thanks @isoutamo
