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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...