Hi,
I use ELk GA 5.0.0. I have log entries like below
<timestamp><user><action>
Which is parsed by logstash and saved to elasticsearch. Actions can be like login
, search
, logout
etc. I wanted to view total count of actions of each user. I was able to create a table visualization in Kibana like below;
-----------------------------
User | Action | Count
-------+------------+--------
UserA | Login | 20
-------+------------+--------
UserA | Search | 10
-------+------------+--------
UserB | Login | 10
-------+------------+--------
UserB | Search | 5
-------+------------+--------
UserC | Login | 5
-------+------------+--------
UserC | Search | 2
-----------------------------
But, I would like to create a table like below;
--------------------------
User | Login | Search
-------+---------+--------
UserA | 20 | 10
-------+---------+--------
UserB | 10 | 5
-------+---------+--------
UserC | 5 | 2
--------------------------
Is this possible in Kibana?
Thanks in advance..