In many circumstances, you may need to extract or transform a data which has just been extracted by another transform. Please see a below case whereby the _raw needs to have a new sourcetype (index time), then on such modified sourcetype you need to extract the fields , and one of the extracted fields itself is an XML. We can achieve all this using props.conf and transforms.conf within an app (or local/ directory of your existing app) In props.conf # ================================================================= # These are executed in the same order that they appear in the list so ORDER CAREFULLY! [incoming_sourcetype] TRANSFORMS-sourcetype = rename_mySourcetype [mySourcetype] # Search Time extractions by REPORT REPORT-mySourcetype = my_deep_extraction_1, my_deeper_extraction_2, my_deeper_extraction_3 # ================================================================= In transforms.conf # ====================...
Many at times, when you add a new indexer or scale up the system, there could be mistakes of not remembering to change the default admin password. Also there might be genuine requirement to reset to original password for admin. You need to have access to backend filesystem access to do this (For cloud customers, you need to request Splunk support). shutdown Splunk ( $SPLUNK_HOME/bin/splunk stop ) Take backup of your passwd file. ( mv $SPLUNK_HOME/etc/passwd /tmp/passwd.bkup ) Start splunk (if you need another passwd, get the file and replace the file) The new file will be generated. if it is default, you can use " admin/changeme " to login again