| Enum Constant and Description |
|---|
AnalyzedBindingsCount
Count of bindings from registered modules which were analyzed for extensions.
|
BindingsCount
Count of elements found in user modules (note that element is wider then binding and include listeners and
other configurations).
|
BindingsResolutionTime
Guice SPI time of modules elements resolution.
|
BundleResolutionTime
Bundles resolution time only (lookup mechanism).
|
BundleTime
Bundles resolution, creation, initialization and run time (combined from both configuration and run phases).
|
CommandTime
Commands processing time.
|
ConfigurationTime
Guicey time in dropwizard configuration phase.
|
DropwizardBundleInitTime
Initialization time of registered dropwizard bundles.
|
ExtensionsInstallationTime
Time spent installing extensions with registered installers.
|
ExtensionsRecognitionTime
Time spent on extensions resolution (matching all extension classes with configured installers ).
|
GuiceyBundleInitTime
Initialization time of registered guicey bundles.
|
GuiceyTime
Overall guicey startup time (including configuration, run and jersey parts).
|
InjectorCreationTime
Guice injector creation time.
|
InstallersTime
Installers resolution, instantiation and execution time.
|
JerseyInstallerTime
Time spent by
JerseyInstaller to install
jersey related features. |
JerseyTime
Guicey initialization time inside jersey context.
|
ModulesProcessingTime
Modules pre processing time (include Aware* interfaces processing and bindings analysis).
|
RemovedBindingsCount
Removed configuration elements count.
|
RemovedInnerModules
Count of removed inner guice modules.
|
RunTime
Guicey time in dropwizard run phase (without jersey time).
|
ScanClassesCount
Count of classes loaded during classpath scan.
|
ScanTime
Classpath scan time (time to resolve all classes from configured packages).
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isTimer() |
void |
requiresCounter() |
void |
requiresTimer() |
static Stat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Stat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stat GuiceyTime
public static final Stat ConfigurationTime
GuiceyTime.public static final Stat CommandTime
ConfigurationTime and
a bit of RunTime (fields initialization).public static final Stat ScanTime
ConfigurationTime.public static final Stat ScanClassesCount
public static final Stat BundleTime
public static final Stat BundleResolutionTime
BundleTime.public static final Stat DropwizardBundleInitTime
BundleTime.public static final Stat GuiceyBundleInitTime
BundleTime.public static final Stat InstallersTime
public static final Stat ExtensionsRecognitionTime
InstallersTime.public static final Stat RunTime
GuiceyTime.public static final Stat ModulesProcessingTime
ExtensionsRecognitionTime.
Part of RunTime.public static final Stat BindingsCount
public static final Stat AnalyzedBindingsCount
GuiceyOptions.AnalyzeGuiceModules, this counter indicates if
analysis was performed or not.public static final Stat RemovedBindingsCount
public static final Stat RemovedInnerModules
public static final Stat BindingsResolutionTime
GuiceyOptions.AnalyzeGuiceModules, this time become a part of
overall injector creation time.public static final Stat InjectorCreationTime
RunTime.public static final Stat ExtensionsInstallationTime
RunTime.public static final Stat JerseyTime
GuiceyTime.public static final Stat JerseyInstallerTime
JerseyInstaller to install
jersey related features. Part of JerseyTime.public static Stat[] values()
for (Stat c : Stat.values()) System.out.println(c);
public static Stat valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isTimer()
public void requiresTimer()
java.lang.IllegalStateException - is current stat is not timerpublic void requiresCounter()
java.lang.IllegalStateException - is current stat is not counter stat