Hi Alex, Your fields--c0, c1, c2, and c3--are likely in different events: Sat Feb 20 12:47:40 EST 2021 c0=123 host=host1 sourcetype=st1 Sat Feb 20 12:47:40 EST 2021 c1=456 host=host1 sourcetype=st2 Sat Feb 20 12:47:40 EST 2021 c2=789 host=host1 sourcetype=st3 Sat Feb 20 12:47:40 EST 2021 c3=234 host=host1 sourcetype=st4 You'll need to group your events in some way to sum field values. If your events have synchronized time stamps, for example, you may be able to group by time: host=host1 sourcetype IN (st1,st2,st3,st4,st5,st6) | bin _time span=5m | stats values(c0) as c0 values(c1) as c1 values(c2) as c2 values(c3) as c3 by _time | eval totals=coalesce(c0,0)+coalesce(c1,0)+coalesce(c2,0)+coalesce(c3,0) | delta totals as dtot | timechart fixedrange=f span=5m per_second(dtot) There are many other ways to aggregate/group events. The chart, stats, timechart, and tstats commands are usually the most efficient. The transaction command is very flexible, but it doesn't scale over large result sets. -Trev
... View more