Splunk Search

How to categorize count results by country

parwindertaank
Explorer

I have the following code from a web log, which gives me a table of the Time (by minute) the total for that minute, and the prediction and residual values.

I want to separate this by country, not just time.
ie, for each country and their times, what are the count values etc.

How can I update my code, which doesnt split the total and time by country?

index=* sourcetype ="access_combined" clientip=* 
  | iplocation clientip
  | bin _time span=1m 
  | stats count AS perMin by _time, Country
  | timechart span=1m sum(perMin) AS Total
  | predict Total as prediction algorithm=LLP future_timespan=5 holdback=0 
  | where prediction!="" AND Total!="" 
  | eval residual = prediction - Total
Tags (1)
0 Karma

TISKAR
Builder

Can you try this:

 index=* sourcetype ="access_combined" clientip=* 
       | iplocation clientip
       | bin _time span=1m 
       | stats count AS perMin by _time, Country
       | bin _time span=1m 
       | stats sum(perMin) AS Total by _time Country
       | predict Total as prediction algorithm=LLP future_timespan=5 holdback=0 
       | where prediction!="" AND Total!="" 
   | eval residual = prediction - Total

parwindertaank
Explorer

This works in splitting the results by Country!

Im not sure however if the prediction for the Total is accurate anymore, because the values I get for each country by minute are way off from the actual values.

How can I modify my predict command on Total use only the values for each country by minute for the prediction?

0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...