Skip to content
This repository has been archived by the owner on Aug 12, 2021. It is now read-only.

Latest commit

 

History

History
11 lines (7 loc) · 1010 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 1010 Bytes

code_call_lens

This extension for Visual Studio Code visualizes usage metrics using a code lens.

Code lenses are "actionable contextual information interspersed" according to https://code.visualstudio.com/blogs/2017/02/12/code-lens-roundup. In simpler words, they are little comments that can appear througout the code (interspersed), that are actionable (one, if implemented, can click on it), and they provide contextual information.

With "usage metrics" we mean metrics that describe how often a specific piece of code was invoked during a given period of time. This means that we need three parts to make this plugin work:

  • A software that is monitored: this software contains a module that is triggered whenever a given method is invoked and logs it to a server with a specific format.
  • A backend server that stores the received logs and provides summary analyses that are called by this extension.
  • A visualization of the collected data: this extension visualizes it within Visual Studio Code.