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: Expected Output: Challenges: with my query, the GB to MB conversion happening is not happening properly Need to round of MB and GB values Date formating Could you please help me achieve the data 🙂
... View more