Dashboards & Visualizations

How do I trim a field in a Splunk dashboard?

anthonyantos
Engager

Hello,

I have a dashboard that I'm first appending to, example: |eval host=host." @ ".type which would result in myhost @ kc.

Then, I'm using a token to do a search, which would be index={myindex} source={mysource} $host$ *. I need to strip the host back to its original by removing the " @ kc" in this case.

I've tried the |makeresults "index={myindex} source={mysource} $host$ *" |rex mode=sed field=host "s/\s@\s\w+//g" but it won't return any results in my search.

Any help would be appreciated

0 Karma
1 Solution

DalJeanis
Legend

Okay, so first, you haven't explained why you are adding the @.type Why don't you add it to a different version of the field, with a slightly different name, and then use the original for the new search?

Second, you can try something like this...

index={myindex} source={mysource} 
    [
    | makeresults 
    | eval host="$host$" 
    | table host 
    | rex mode=sed field=host "s/\s@\s\w+/*/g"
    ]

View solution in original post

0 Karma

DalJeanis
Legend

Okay, so first, you haven't explained why you are adding the @.type Why don't you add it to a different version of the field, with a slightly different name, and then use the original for the new search?

Second, you can try something like this...

index={myindex} source={mysource} 
    [
    | makeresults 
    | eval host="$host$" 
    | table host 
    | rex mode=sed field=host "s/\s@\s\w+/*/g"
    ]
0 Karma

anthonyantos
Engager

Thanks for the assistance

DalJeanis
Legend

@anthonyantos - Glad we were able to help. You didn't tell us which one worked for your use case.... whether you went with the deeper fix, or whether the code worked. People researching their own problems later might find that information helpful... - dal

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...