We can check a uptime for any process using linux command. But you should have to know process ID for this.
We can find process ID using below commands.
#ps -ef | grep process_name
Below is the command which provides you the uptime for this process.
#ps -p 12119 -o "%t"
We can find process ID using below commands.
#ps -ef | grep process_name
Below is the command which provides you the uptime for this process.
#ps -p 12119 -o "%t"
No comments:
Post a Comment