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!

Now Playing: Splunk Education Summer Learning Premieres

It’s premiere season, and Splunk Education is rolling out new releases you won’t want to miss. Whether you’re ...

The Visibility Gap: Hybrid Networks and IT Services

The most forward thinking enterprises among us see their network as much more than infrastructure – it's their ...

Get Operational Insights Quickly with Natural Language on the Splunk Platform

In today’s fast-paced digital world, turning data into actionable insights is essential for success. With ...