Hi All,
I am trying to get the count of different fields and put them in a single table with sorted count.
stats count(ip) | rename count(ip) as count |
append [stats count(login) | rename count(login) as count] |
append [ stats count(bcookie) | rename count(bcookie) as count]
I seem to be getting the following output:
count
10
20
30
However, I need the output to be something like this:
name count
ip 10
login 20
bcookie 30
Thanks in advance.
Aditya
↧