Getting Data In

How to rename dynamic input results

lyf1995123
Engager

Sorry, I am new to Splunk. Now I use a dynamic dropdown to generate all the results, like below:

index=dev-app host=hadoopdn* $importids$ $batchids$ $stages$ |stats count by groupName

Now the query result is like:

FileSystemCounters   10
*.FileType        14
*.StatsCounters      3
*$Counter           6

The problem is the prefix is too long to display.
Is there a way that can only display the latter part?
Like "StatsCounters" instead of "*.StatsCounters"
Maybe use an alias?

0 Karma
1 Solution

renjith_nair
Legend

@lyf1995123,

If you have a pattern in the group name , you could use regex to extract it.

For e.g. from your above examples

     index=dev-app host=hadoopdn* $importids$ $batchids$ $stages$ |stats count by groupName
    | rex field=groupName "\*?[.$]?(?<groupName >\w+)"
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

0 Karma

lyf1995123
Engager

What I want is the result generated like this: stats count by groupName |rex field=groupName mode=sed "s/^\w.+./""/g"

0 Karma

evania
Splunk Employee
Splunk Employee

Hi @lyf1995123 ,

Did you have a chance to check out an answer? If it worked, please resolve this post by approving it! If your problem is still not solved, keep us updated so that someone else can help you.

Thanks for posting!

0 Karma

renjith_nair
Legend

@lyf1995123,

If you have a pattern in the group name , you could use regex to extract it.

For e.g. from your above examples

     index=dev-app host=hadoopdn* $importids$ $batchids$ $stages$ |stats count by groupName
    | rex field=groupName "\*?[.$]?(?<groupName >\w+)"
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

lyf1995123
Engager

Inspired by your answer, I think what I am looking for is like "stats count by groupName |rex field=groupName mode=sed "s/^\w.+./""/g"".
And it worked as I expected. But thanks still.

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 ...