Getting Data In

Is there a way to use some sort of regular expression with field aliases?

ddrillic
Ultra Champion

Is there a way to simply the props.conf configurations and do the following in one command -

FIELDALIAS-alias01 = "apiRequest.reqHeader.appContext" AS appContext
FIELDALIAS-alias02 = "apiRequest.reqHeader.dob" AS dob
FIELDALIAS-alias03 = "apiRequest.reqHeader.encryptedUserName" AS encryptedUserName
FIELDALIAS-alias04 = "apiRequest.reqHeader.firstName" AS firstName
FIELDALIAS-alias05 = "apiRequest.reqHeader.lastName" AS lastName
Tags (2)
0 Karma

splunker12er
Motivator

wild cards are not supported in FIELDALIAS attribute. Try this REPORT method

props.conf

 [yourSourceType]
 REPORT-extractrequestheaders = extract_req_headers

transforms.conf

[extract_req_headers]
 REGEX = <use regex group match your field and values>
 FORMAT = $1::$2
 REPEAT_MATCH = true

thanks

ddrillic
Ultra Champion
0 Karma

p_gurav
Champion

Can you try :

 FIELDALIAS-alias = apiRequest.reqHeader.* AS *
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 ...