Hey folks, I need help on field extraction. I have index=abs, source =123. When I search this in the Splunk, I can see some fields are auto extracted. for example , session=12345, Status=Success,NA,NA. In this case , I tried to create a new field extraction on top of this, but it was not working. I don't want that "Status=Success,NA,NA." I need to separate it as "Status=Success" ", Exception=NA", "SubAPITime=NA". when I tried to create a new field in search level (UI) and Index level(Index Cluster) , it is not working. I hope, we have to first remove the existing fields and then create our new field extraction. Please help me on this one ! props.conf for new field extraction which is not working : [source::123] TRANSFORMS-extract-app_rewards = rewards_qual transforms.conf [rewards_qual] SOURCE_KEY = MetaData:Source REGEX = ^(?P<SessionId>[^,]+),(?P<User>[^,]+),(?P<DateTime>[^,]+),(?P<View>[^,]+),(?P<AppliedFilters>[^,]+),(?P<Status>[^,]+),(?P<Exception>[^,]+),(?P<SubAPITime>[^,]+),(?P<SubAPIName>[^,]+),(?P<TransactionId>[^,]+),(?P<HANATime>[^,]+),(?P<TotalTime>.+) FORMAT = SessionId::$1 User::$2 DateTime::$3 View::$4 AppliedFilters::$5 Status::$6 Exception::$7 SubAPITime::$8 SubAPIName::$1 TransactionId::$1 HANATime::$1 TotalTime::$1 WRITE_META = true I tried with source and source type as well. Thanks, Dharani.
... View more