How to check if Kibana 4 is working on a Linux machine?
I have set up a Linux machine, I just want to check if kibana 4 works fine.
+3
Shubham mishra
source
to share
2 answers
You can always use:
ps auwx | grep kibana
he will list the kibana process
Care: it will also indicate the command itself
+5
Samy elaiassi
source
to share
We can also use the command:
ps -ef | grep -irn kibana
All kibana processes running on the instance will be listed here.
0
Shubham mishra
source
to share