Jim Wu
Jim Wu

Reputation: 149

How to find when a TFS Job was created

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

Answers (1)

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51153

There is a tool for TFS Administrators which can monitor job status through

http://your-server:8080/tfs/_oi/

enter image description here 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

Related Questions