tags:

views:

24

answers:

1

I need a help in collecting some metrics like how much time a GIT command or a script took to run.

Am aware that appending time before the command would give the time taken to complete the GIT command,

But is there a better way or a tool for monitoring or collecting the metrics so that the tool calculates the time for each GIT command run by several develoeprs and records in a log?

Thanks in advance

+1  A: 

Use the bash time command?

http://ss64.com/bash/time.html

Benjol