I have a set of data which comes from two indexes . It looks more or less like below: (index="o_a_p") OR ( index="o_d_p" ) ```a ``` | eval ca = substr(c_u,2,length(c_u)) ``` transformation of oap index`` ```d ``` | eval e_d = mvindex(split(ed, ","), 0) ``` transformation of odp index``` | eval cd = mvindex(split(Rr, "/") ,0) | eval AAA=c_e.":".ca | eval DDD=e_d.":".cd | eval join=if(index="o_a_p",AAA,DDD) ``` join field``` | stats dc(index) AS count_index values(Op) as OP values(t_t) as TT BY join | where count_index=2 so now , how to create timechart based on fields which comes from stats ? There is no _time field there 😞 K.
... View more