Splunk Search

How to edit my tstats search with inputlookup to return additional columns from a CSV file?

sumitkathpal
Explorer

Hi All,

Need your help to refine this search.

Currently in the search, we are using the tstats command along with inputlookup to compare the blacklisted IP's with firewall IP's. Below is the search

| tstats `summariesonly`  dc(All_Traffic.dest) as dest_count from datamodel=Network_Traffic where All_Traffic.src_zone=outside    by All_Traffic.src  | search [| inputlookup commonBlacklistIp.csv | search "Confidence Level"=high| rename Ip as All_Traffic.src | fields All_Traffic.src ]| rename dest_count as "Unique Destination IP" All_Traffic.src as "Blacklisted IP" |  sort -"Unique Destination IP"

This search is working fine and we are getting the output Matched IP along with Count.

Now in our commonBlacklistIp.csv file, there are other fields like Severity and Confidence columns also. Once it matches the file, we need Matched IP , Severity IP , Confidence IP , Count in columns .

Hope you guys understand my question.

Do let me know if you guys have any questions for me.

Thank in advance 🙂

0 Karma
1 Solution

sundareshr
Legend

You need the lookup command. Try it like this

 | tstats `summariesonly`  dc(All_Traffic.dest) as dest_count from datamodel=Network_Traffic where All_Traffic.src_zone=outside    by All_Traffic.src  | lookup commonBlacklistIp.csv ip AS "All_Traffic.src" OUTPUT "Matched IP" "Severity IP"  "Confidence Level" | search "Confidence Level"=high | rename dest_count as "Unique Destination IP" All_Traffic.src as "Blacklisted IP" |  sort -"Unique Destination IP"

View solution in original post

sundareshr
Legend

You need the lookup command. Try it like this

 | tstats `summariesonly`  dc(All_Traffic.dest) as dest_count from datamodel=Network_Traffic where All_Traffic.src_zone=outside    by All_Traffic.src  | lookup commonBlacklistIp.csv ip AS "All_Traffic.src" OUTPUT "Matched IP" "Severity IP"  "Confidence Level" | search "Confidence Level"=high | rename dest_count as "Unique Destination IP" All_Traffic.src as "Blacklisted IP" |  sort -"Unique Destination IP"

sumitkathpal
Explorer

Thanks ...................

0 Karma
Get Updates on the Splunk Community!

Data-Driven Success: Splunk & Financial Services

Splunk streamlines the process of extracting insights from large volumes of data. In this fast-paced world, ...

Video | Welcome Back to Smartness, Pedro

Remember Splunk Community member, Pedro Borges? If you tuned into Episode 2 of our Smartness interview series, ...

Detector Best Practices: Static Thresholds

Introduction In observability monitoring, static thresholds are used to monitor fixed, known values within ...