public final class ControllerStatistics extends Object
Controller
.Modifier and Type | Field and Description |
---|---|
double |
algorithmTimeAverageInWindow
Average clustering time measured within the
algorithmTimeWindowSize . |
long |
algorithmTimeMeasurementsInWindow
Number of algorithm time measurements within the
algorithmTimeWindowSize . |
long |
algorithmTimeWindowSize
Clustering average time measurement window, in milliseconds.
|
Long |
cacheHitsTotal
Number of requests served from cache.
|
Long |
cacheMisses
Number of requests that generated cache misses.
|
long |
goodQueries
Number of queries handled without an exception.
|
double |
sourceTimeAverageInWindow
Average document source processing time measured within the
sourceTimeWindowSize . |
long |
sourceTimeMeasurementsInWindow
Number of document source processing time measurements within the
sourceTimeWindowSize . |
long |
sourceTimeWindowSize
Document source average processing time measurement window, in milliseconds.
|
long |
totalQueries
Total number of queries handled, including queries resulting in an exception.
|
double |
totalTimeAverageInWindow
Average total processing time measured within the
totalTimeWindowSize . |
long |
totalTimeMeasurementsInWindow
Number of total processing time measurements within the
totalTimeWindowSize . |
long |
totalTimeWindowSize
Total average processing time measurement window, in milliseconds.
|
Modifier and Type | Method and Description |
---|---|
void |
serialize(OutputStream stream)
Serializes this statistics object as XML stream.
|
public final long totalQueries
public final long goodQueries
public final double algorithmTimeAverageInWindow
algorithmTimeWindowSize
.public final long algorithmTimeMeasurementsInWindow
algorithmTimeWindowSize
.public final long algorithmTimeWindowSize
public final double sourceTimeAverageInWindow
sourceTimeWindowSize
.public final long sourceTimeMeasurementsInWindow
sourceTimeWindowSize
.public final long sourceTimeWindowSize
public final double totalTimeAverageInWindow
totalTimeWindowSize
.public final long totalTimeMeasurementsInWindow
totalTimeWindowSize
.public final long totalTimeWindowSize
public final Long cacheMisses
public final Long cacheHitsTotal
public void serialize(OutputStream stream) throws Exception
Exception