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!

Exporting Splunk Apps

Join us on Monday, October 21 at 11 am PT | 2 pm ET!With the app export functionality, app developers and ...

Cisco Use Cases, ITSI Best Practices, and More New Articles from Splunk Lantern

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

Build Your First SPL2 App!

Watch the recording now!.Do you want to SPL™, too? SPL2, Splunk's next-generation data search and preparation ...