Splunk Search

How to run same search for different source files?

deepthi5
Path Finder

Hi Team,

Again an urgent requirement. I have got a couple csv files with source name c:\\budapest.csv, c:\\singapore.csv, c:\\germany.csv etc

All I wantt is some stats sorted with country and run the same search on all other files.

Right now I have a searcj where I am appending each and every source file with the same search which is becoming bigger as I add more subsearches:

source="C:\\Budapest Router1full.csv" host="SEZ00VVM-153"   sourcetype="csv" date_wday!=saturday AND date_wday!=sunday|  rex field=source "(?<country>.*?)$"| lookup datacentre.csv country OUTPUT start_hour end_hour receivebandwidth sitename |where date_hour>=start_hour AND date_hour<= end_hour|eval Intraffic=IN/1048576 |bin _time span=1mon| stats values(receivebandwidth) as maxin ,perc95(Intraffic) AS Percentile by _time   |eval total=Percentile/maxin*100|timechart span=1d values(total)   As Budapest(total%)|append[search source="C:\\Adelaide full.csv" date_wday!=saturday AND date_wday!=sunday|  rex field=source "(?<country>.*?)$"| lookup datacentre.csv country OUTPUT start_hour end_hour receivebandwidth sitename |where date_hour>=start_hour AND date_hour<= end_hour|eval Intraffic=IN/1048576 |bin _time span=1d| stats values(receivebandwidth) as maxin ,perc95(Intraffic) AS Percentile by _time   |eval total=Percentile/maxin*100|timechart span=1d values(total)   As Adelaide(total%)]

Please help

Thanks ,
Deepthi

0 Karma
1 Solution

HeinzWaescher
Motivator

To use same query for different sources:

 source=budapest.csv OR source=singapore.csv OR source=germany.csv | *your search...*

View solution in original post

HeinzWaescher
Motivator

To use same query for different sources:

 source=budapest.csv OR source=singapore.csv OR source=germany.csv | *your search...*
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...