Splunk Search

Statistics data in GB, MB values

jeganl
Engager

Hi Ninjas, I'm trying to make a table that should list date, domains, action_types, action_type_usage_in_MB, Domain_usage_in_GB. Here is my query inprogress:

 

sourcetype=access_combined domain=abc 
| eval raw_len1=(len(_raw)/(1024*1024*1024)) 
| stats sum(raw_len1) as Domain_usage_in_GB by domain, action_type, _time 
| eval raw_len2=(len(Domain_usage_in_GB)/(1024)) 
| stats list(action_type) as action_type, list(raw_len2) as action_type_usage_in_MB, sum(Domain_usage_in_GB) as Domain_usage_in_GB by domain 
| sort -Domain_usage_in_GB

 

Here is the output:

result.png

Expected Output:

Expected result.png

Challenges:

  1. with my query, the GB to MB conversion happening is not happening properly

  2. Need to round of MB and GB values

  3. Date formating

Could you please help me achieve the data 🙂

Labels (1)
0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @jeganl,

Please try below query;

sourcetype=access_combined domain=abc 
| eval raw_len=len(_raw) 
| stats sum(raw_len) as Domain_usage by domain, action_type, _time 
| eval raw_len2=Domain_usage/1024/1024 
| stats list(_time) as _time list(action_type) as action_type, list(raw_len2) as action_type_usage_in_MB, sum(Domain_usage) as Domain_usage_in_GB by domain 
| eval Domain_usage_in_GB=Domain_usage_in_GB/1024/1024/1024 
| sort -Domain_usage_in_GB

 

If this reply helps you an upvote and "Accept as Solution" is appreciated.
0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @jeganl,

Please try below;

sourcetype=access_combined domain=abc 
| eval raw_len=len(_raw) 
| stats sum(raw_len) as Domain_usage by domain, action_type, _time 
| eval raw_len2=Domain_usage/1024/1024 
| stats list(_time) as _time list(action_type) as action_type, list(raw_len2) as action_type_usage_in_MB, sum(Domain_usage) as Domain_usage_in_GB by domain 
| eval Domain_usage_in_GB=Domain_usage_in_GB/1024/1024/1024 
| sort -Domain_usage_in_GB
If this reply helps you an upvote and "Accept as Solution" is appreciated.
0 Karma
Get Updates on the Splunk Community!

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Announcing the General Availability of Splunk Enterprise Security 8.1!

We are pleased to announce the general availability of Splunk Enterprise Security 8.1. Splunk becomes the only ...

Developer Spotlight with William Searle

The Splunk Guy: A Developer’s Path from Web to Cloud William is a Splunk Professional Services Consultant with ...