Knowing what index the offending sourcetype is in is only part of the battle. Next, use your Splunk skills to find which host(s) send the data and the original source file. This information will help you identify the inputs.conf file to change. Once you've found the inputs.conf file, modify the appropriate stanza to include a sourcetype setting (sourcetype=itops, for example). The next step is to create a matching stanza in a props.conf file on the indexers. In an appropriate app, edit props.conf to include the "Great Eight" attributes. [itops]
TIME_PREFIX =
TIME_FORMAT =
MAX_TIMESTAMP_LOOKAHEAD =
TRUNCATE =
SHOULD_LINEMERGE =
LINE_BREAKER =
EVENT_BREAKER_ENABLE = true
# Set to the same value as LINE_BREAKER
EVENT_BREAKER = Set each value based on the events received with that sourcetype. Yes, another option is to not ingest this data. If you don't use it then there's little point in paying to ingest it.
... View more