Splunk Search

Need to search all request based on IP address

varshna
New Member

I have these pattern in logs and I want to search burst of requests coming from one IP address

For example:

line: 10.196.. - - [06/Mar/2019:09:28:41 +0000] "GET /info/moin_static155a/common/ie7/ie7-overflow.js HTTP/1.1" 404 17

0 Karma

varshna
New Member

I am getting hit by different IPs at random times and their pattern is random. This is one of the example. Is there a way to detect the pattern, for ex: sudden burst of requests coming from one IP or sudden increase in 5XX or 4XX.

0 Karma

cvssravan
Path Finder

You can search directly like this:

index="your index" "10.196.x.x"

0 Karma

JPaule
Explorer

index=x IP=10.196.xx.xx | table *

Where IP is column name. That should work unless I'm missing something.

0 Karma

renjith_nair
Legend

@varshna,

If you have the IP address as a field in the events, you could search it with fieldname_of_ip="10.196..."
Or you shall extract the IP address from the events using rex and search with it
Or you can search directly in the events with index="your index" TERM(10.196...)

Happy Splunking!
0 Karma

varshna
New Member

I am getting hit by different IPs at random times and their pattern is random. This is one of the example. Is there a way to detect the pattern, for ex: sudden burst of requests coming from one IP or sudden increase in 5XX or 4XX.

0 Karma

renjith_nair
Legend

@varshna,

You can count the events per IP and compare it with previous counts and see if there is a sudden increase

For eg. index=your_index earliest=-2h |bucket span=1h _time|stats count by IP,_time

Similarly for 5xx and 4xxx

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

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, ...