Hello, how do aggregation and filtering transforma...
# support
a
Hello, how do aggregation and filtering transformations affect pricing? If I use transformations to filter out 50% of my 1 Million events, do only 500k "count" towards my event limits? Similarly, if I use transformBatch to return twice as many events than were passed in, would the doubled number of events be counted? Or whichever number of events is greater pre/post transformation? Thanks.
h
events count at ingestion, if you throw it away in a transform it still counts
a
What about if I use transformBatch to "unroll" an event into multiple events? Since that happens after ingestion, would it still only count as a single event?
h
yes, it counts at ingestion not after
a
thank you!