Getting Data In

overriding sourcetype with sourcetype= in props.conf

alextsui
Path Finder

Hello, when using the following setup in props.conf, i was able to get the sourcetypes I want.

[source::/var/splunk/huaya-fs1/10010715/mitac_log-10010715.tar.gz:./wtmpx]
sourcetype = wtmpx

[source::/var/splunk/huaya-fs1/10010715/mitac_log-10010715.tar.gz:./messages]
sourcetype = messages

However, when I tried the setup below, sourcetype wtmpx showed, but messages files showed syslog as their sourcetype.

[source::/var/splunk/.../.../.../wtmpx]
sourcetype = wtmpx

[source::/var/splunk/.../.../.../messages]
sourcetype = messages

any ideas?

Splunk 4.1.1 on Linux 2.6 Kernel

thanks

1 Solution

gkanapathy
Splunk Employee
Splunk Employee

It's being overridden by a setting in $SPLUNK_HOME/etc/system/default/props.conf:

[source::.../messages(.\d+)?]
sourcetype = syslog 

You can override this by using:

[source::/var/splunk/*/*/*/messages]
sourcetype = messages
priority = 101

Note that you probably don't want multiple ... wildcards, since those expand to (in regex terms) .* (dot star), including / (slash), which means it will match files deeper than you appear to have wanted. * expands (in regex terms) to [^\\/]*, i.e., anything except a path separator.

View solution in original post

gkanapathy
Splunk Employee
Splunk Employee

It's being overridden by a setting in $SPLUNK_HOME/etc/system/default/props.conf:

[source::.../messages(.\d+)?]
sourcetype = syslog 

You can override this by using:

[source::/var/splunk/*/*/*/messages]
sourcetype = messages
priority = 101

Note that you probably don't want multiple ... wildcards, since those expand to (in regex terms) .* (dot star), including / (slash), which means it will match files deeper than you appear to have wanted. * expands (in regex terms) to [^\\/]*, i.e., anything except a path separator.

Get Updates on the Splunk Community!

What's New in Splunk Cloud Platform 9.3.2411?

Hey Splunky People! We are excited to share the latest updates in Splunk Cloud Platform 9.3.2411. This release ...

Buttercup Games: Further Dashboarding Techniques (Part 6)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Technical Workshop Series: Splunk Data Management and SPL2 | Register here!

Hey, Splunk Community! Ready to take your data management skills to the next level? Join us for a 3-part ...