Class Instrumenter.InstrumentationReport
- java.lang.Object
-
- com.tonic.analysis.instrumentation.Instrumenter.InstrumentationReport
-
- Enclosing class:
- Instrumenter
public static class Instrumenter.InstrumentationReport extends Object
Immutable counts from one instrumentation run.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInstrumenter.InstrumentationReport.BuilderMutable accumulator for the report counters.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Instrumenter.InstrumentationReport.Builderbuilder()intgetClassesInstrumented()intgetErrors()intgetMethodsInstrumented()intgetTotalInstrumentationPoints()StringtoString()
-
-
-
Method Detail
-
getTotalInstrumentationPoints
public int getTotalInstrumentationPoints()
- Returns:
- the total instrumentation points
-
getClassesInstrumented
public int getClassesInstrumented()
- Returns:
- the classes instrumented
-
getMethodsInstrumented
public int getMethodsInstrumented()
- Returns:
- the methods instrumented
-
getErrors
public int getErrors()
- Returns:
- the errors
-
builder
public static Instrumenter.InstrumentationReport.Builder builder()
- Returns:
- a fresh report builder with every counter at zero
-
-