Splunk Search

In accesslog, "status" search.. help me ^^

khyoung7410
Communicator

Hi


Please help me a little "Search Command".


In accesslog, I should need two results.(count)


I Have a field name "status".


Using status field under line.


--- result ----


* | 404 | 40x 50x | ~


      6         300 ===> count

Please help me.

Thanks

Tags (1)
0 Karma

khyoung7410
Communicator

Hi Ayn!

Thank you for answer.

I learned so much thanks.

0 Karma

Ayn
Legend

Awesome. Could you please mark my answer as accepted? Thanks!

0 Karma

Ayn
Legend

I'm GUESSING the question is how you can get a table containing a count of the different values for the field "status"?

... | stats count by status

Or is the issue how to have one count for "404", but then group together all other 40x status codes? In that case use eval:

.... | eval status_group=case(status="404","404",match(status,"^40"),"40x",match(status,"^50"),"50x") | stats count by status_group
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...