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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...