Splunk Search

count the field using occurrences of string in the field value

goalkeeper
Explorer

I am very new to Splunk.

I have an access.log file, which contains the Url and  querystring:

url                                                   queryString

http://host/getOrder             id=1&id=2&id=3

http://host/getUser               id=1&id=2 

http://host/getUser              id=2&id=3 

How could I  count the url using the occurrence of "id" in the queryString?

So the result I want would be

Url                                             IdCount

http://host/getOrder        3

http://host/getUser           4

 

Thanks in advance

Labels (4)
1 Solution

bowesmana
SplunkTrust
SplunkTrust

@goalkeeper 

See this demo example using your data 

| makeresults
| eval _raw="url,queryString
http://host/getOrder,id=1&id=2&id=3
http://host/getUser,id=1&id=2
http://host/getUser,id=2&id=3"
| multikv forceheader=1
| table url queryString
| rex field=queryString max_match=0 "id=(?<id>\d+)"
| eval ids=mvcount(id)
| stats sum(ids) as ids by url

What you want is from the rex statement down. This will

  • Extract the ids into a new field called id based on the regex
  • Count the number of ids found
  • Calculate the sum of ids by url

Hope this helps

 

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

@goalkeeper 

See this demo example using your data 

| makeresults
| eval _raw="url,queryString
http://host/getOrder,id=1&id=2&id=3
http://host/getUser,id=1&id=2
http://host/getUser,id=2&id=3"
| multikv forceheader=1
| table url queryString
| rex field=queryString max_match=0 "id=(?<id>\d+)"
| eval ids=mvcount(id)
| stats sum(ids) as ids by url

What you want is from the rex statement down. This will

  • Extract the ids into a new field called id based on the regex
  • Count the number of ids found
  • Calculate the sum of ids by url

Hope this helps

 

goalkeeper
Explorer

It works. Thanks again.

0 Karma
Get Updates on the Splunk Community!

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...

From Alert to Resolution: How Splunk Observability Helps SREs Navigate Critical ...

It's 3:17 AM, and your phone buzzes with an urgent alert. Wire transfer processing times have spiked, and ...

ATTENTION!! We’re MOVING (not really)

Hey, all! In an effort to keep this Slack workspace secure and also to make our new members' experience easy, ...