Hello, I know it is an very old post but it is close to what I'm looking for. I'm trying to extract the log volume per source type, the below query is working fine but it groups all "small" source types in an "other" column. I can't find how to show all sourcetypes in the result ? index=_internal (host=*.*splunk*.* NOT host=sh*.*splunk*.*) source=*license_usage.log* type="Usage" | eval h=if(len(h)=0 OR isnull(h),"(SQUASHED)",h) | eval s=if(len(s)=0 OR isnull(s),"(SQUASHED)",s) | eval idx=if(len(idx)=0 OR isnull(idx),"(UNKNOWN)",idx) | timechart span=1d eval(round((sum(b)/pow(2,30)),3)) AS Volume by st | append [| search (index=summary source="splunk-entitlements") | bin _time span=1d | stats max(ingest_license) as license by _time] | stats values(*) as * by _time | rename license as "license limit" | fields - volume
... View more