Splunk Search

Rename results doesn't work

philallen1
Path Finder

Hi

I have a feeling I'm missing something simple here. This is my search:

sourcetype="ContributionWebApi"  DbQuery=* | chart count by DbQuery 

And this are my results:

DbQuery--------------------------------------------------------------------count

EXEC [usp_GetClientListHierarchyNode] --------------------------------------3

EXEC [usp_GetClientListHierarchyTopLevel]-----------------------------------68

EXEC [zambezi.usp_GetDealsByClient]-----------------------------------------77

SELECT DISTINCT(UserTeamId) FROM SmartWarehouse.dbo.SR_UserTeam-------------68

I want to rename the DbQuery results to something more meaningful. I.e. for the first row, I'd rather it says "EXEC GetClientListHierarchy"

Is it possible to do this in the initial search? (i.e. using "rename"?) If not, where and how can I do this.

Thanks a lot

Tags (2)
0 Karma

somesoni2
Revered Legend

Rename is for field names and you want to update field values, so that is not applicable for your case. You can use eval-replace if you know what are the possible strings you want to remove. Your example (changing "EXEC [usp_GetClientListHierarchyNode]" to "EXEC GetClientListHierarchy") can be achieve by following:-

sourcetype="ContributionWebApi" DbQuery=* | eval DbQuery=replace(DbQuery,"\[","") | eval DbQuery=replace(DbQuery,"\]","")| chart count by DbQuery

forward slash is escape character for brackets.

you can add more eval-replace part for all your customizations.

lukejadamec
Super Champion

You can use eval case(), but you would need to list each one in the case statement, and you can’t use wildcards directly. It would look something like this:

sourcetype="ContributionWebApi" DbQuery=* | eval DbQuery_desc=case(DbQuery=“EXEC [usp_GetClientListHierarchyNode]”,"EXEC GetClientListHierarchy",DbQuery=” EXEC [usp_GetClientListHierarchyTopLevel]”,“EXEC usp_GetClientListHierarchyTopLevel”,DbQuery=”EXEC [zambezi.usp_GetDealsByClient]”,DbQuery=“EXEC [zambezi.usp_GetDealsByClient]”,”EXEC zambezi.usp_GetDealsByClient”,DbQuery=”SELECT DISTINCT(UserTeamId) FROM SmartWarehouse.dbo.SR_UserTeam”,”SELECT DISTINCT UserTeamId FROM SmartWarehouse.dbo.SR_UserTeam”) | chart count by DbQuery_desc

You may also be able to use a lookup. You would still need to list all of the possible results with your desired wording, but they would be in a csv file not in the search.

Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...