Skip to content
| Marketplace
Sign in
Visual Studio>Tools>DevTimeMonitor
DevTimeMonitor

DevTimeMonitor

Luis Enrique Gómez Mena

|
1,532 installs
| (1) | Free
DevTimeMonitor is an extension for Visual Studio 2022 that allow you to measure the efficiency of using GitHub Copilot tool.
Download

DevTimeMonitor

DevTimeMonitor is an extension for Visual Studio 2022 that allow you to measure the efficiency of using GitHub Copilot tool.

  • You can start or stop the extension whenever you want.
  • You can view your statistics at any time.

The code is not analyzed or stored.

You need to have MSSQL locally (personal use) or on a server (for teams) to be able to track and report using SQL, example:

SELECT users.UserName, COALESCE(SUM(trackers.CharactersTracked), 0) AS TotalCharacters, COALESCE(SUM(trackers.CharactersByCopilot), 0) AS CharactersByCopilot, COALESCE(SUM(trackers.CharactersTracked), 0) - COALESCE(SUM(trackers.CharactersByCopilot), 0) AS CharactersByUser FROM dbo.TbUsers users WITH ( NOLOCK ) LEFT JOIN dbo.TbTrackers trackers WITH ( NOLOCK ) ON users.Id = trackers.UserId GROUP BY users.UserName, users.Id;

Statics.jpg

Tables can be generated from the migration found in the repository.

How to configure the extension

In the Tools menu you will find the DevTimeMonitor submenu

image.png

Click the Settings button and put the connection string in the entry, then save it.

Screenshot_2024-01-24_215447.png

Now you need to log in or register a new user.

Screenshot_2024-01-24_220158.png

After that you can start using the extension.

You can review the settings in the Visual Studio options screen (Tools -> Options -> DevTimeMonitor).

Screenshot_2023-10-27_125654__1.png

How to use the extension

If you did not activate automatic start, you must start the extension manually:

In the same submenu press the Start button.

image__3.png

In the output window you will see the following message

Screenshot_2023-09-25_143307.png

Every time you open a file a new message will appear

Screenshot_2023-09-25_143319.png

If you write to the file the following message will be displayed

Screenshot_2023-09-25_143324.png

When Copilot generates the code and you accept it, the following message appears

Screenshot_2024-01-24_213928.png

When you close the file another message will appear

Screenshot_2023-09-25_143328.png

To stop the extension press the Stop button and the following message will appear

Screenshot_2023-09-25_143332.png

How to see your statistics

Press the Show statistics button and the following window will appear

preview.png

You can also use the SQL code provided above.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft