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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...