If you need to know how long your Linux services have been running you can try this:
Linux console
$ ps waux | grep -i
Or
Linux console
$ ps -o etime < pid>
To get the PID you can try the following command:
Linux console
$ ps aux | grep
Piece of cake!