For reasons it could be possible that you need to get the information when a service was restarted. First of all you need to find the process id.
ps | grep "uwsgi"
Using the so found process id you can now get the information of the last restart.
ps -p <processId> -o lstart