Hi all,
I have 2 indexes:
index="abc" with fields uri , a , b , c
and
index="xyz" with fields url , x , y , z
Now the fields url and uri have the same values in both indexes, but this is just a change in the field name.
I want to search both the indexes for all fields a , b , c , x , y , z by url
index="abc" or index="xyz" | eval url=uri | stats values(a),values(b), values(x), values(y) by url
Problem is it is only showing the fields a , b and not x , y in stats results.
any help !!
... View more