Skip to content

A PoC instrumentation class to measure the running time of any code

Notifications You must be signed in to change notification settings

Yohanna/instrumentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Instrumentation is a Proof of Concept of a Java logging class. It can measure the start and end time of tasks down to the milliseconds. The class follows the Singleton design pattern where the class restricts its instantiation to a single instance managed by the class itself.

Directory struction

├── src
│   ├── main
│   │   └── java
│   │       └── instrumentation
│   │           ├── Instrumentation.java
│   │           └── Main.java
│   └── test
│       └── java
│           └── instrumentation
│               ├── BubbleSort2Algorithm.java
│               ├── QSortAlgorithm.java
│               └── SortingTest.java

The main class code is in Instrumentation.java

About

A PoC instrumentation class to measure the running time of any code

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages