2arunpmohan
8/5/2017 - 7:16 PM

start time of a process

logs_indexing common guide lines

For that first get the process id (pid) from the below command

        ps aux | grep logstash

After the collection of pid (suppose the pid = 6666) from above, use that like below to get the start time

        ps -eo pid,cmd,lstart | grep 6666