Getting Data In

Multiple files in one folder as one source

Moritz
Explorer

Hallo there,
i have Logs which are devided into 16000 line logs. In Splunk every part of the Log is an extra source.

What is the best way to work with them as a logical single Log?

Tags (2)
0 Karma

Moritz
Explorer

My best solution is to add a field with the folder name:

source="C:\\..\\Logs\\*" | rex field=source ".*[//\\\]+(?<folder>.*)[//\\\]+.[a-zA-Z.0-9]*"

than i can use it for timechart for example:

source="C:\\..\\Logs\\*" | rex field=source ".*[//\\\]+(?<folder>.*)[//\\\]+.[a-zA-Z.0-9]*" | timechart count by folder
0 Karma

MuS
Legend

Hi Moritz,

assign your own sourcetype to the monitor stanza in inputs.conf. This way you can search for the sourcetype instead of searching for source like this:

sourcetype=YourNewMagicSourceType | ....

or you simply search for all of your logs like this:

source=YourLogFiles* | .....

hope this helps ...

cheers, MuS

Get Updates on the Splunk Community!

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...