Reputation: 149
I am wonderding if there is a way to find out (through API preferably) when projects on a tfs server was created in psudo-real time (Specifically, tfs paths and git repositories). The closest I've gotten is to find the earliest push of every project, but any code I can think of would take too long. Here's my thought process:
is there any way I can send only one api request and get the dates from the response? Thanks.
Upvotes: 2
Views: 327
Reputation: 51153
There is a tool for TFS Administrators which can monitor job status through
http://your-server:8080/tfs/_oi/
Built-in to TFS is the TFS Background Job Agent. This job agent is responsible for the scheduling and queuing of maintenance jobs and other jobs within TFS. More detailed info you can refer this blog from MSDN: How to see activity and job history in TFS 2012
Upvotes: 1