I have created my timelion visualization using for month over month % of new users
.es(index=index,timefield=time,metric=cardinality:company)
.divide(.es(index=index,timefield=time,metric=cardinality:company,offset=-1M)
.cusum()).bars()
Is there any way to put filter directly into timelion expression, lets say sequence : 1,
which means the only the first orders, so that numbers are correct, otherwise it is not.
I know I can set the filter on the dashboard but i dont like that because it ruins my other stats.
Thanks