Package mondrian.server.monitor
Class ConnectionInfo
- java.lang.Object
-
- mondrian.server.monitor.ConnectionInfo
-
public class ConnectionInfo extends Object
Information about a Mondrian connection.
-
-
Field Summary
Fields Modifier and Type Field Description intcellCacheHitCountintcellCacheMissCountintcellCachePendingCountintcellCacheRequestCountintexecuteEndCountintexecuteStartCountStringstackA printout of the stack trace which represents the code stack when the event was created.intstatementEndCountintstatementStartCount
-
Constructor Summary
Constructors Constructor Description ConnectionInfo(String stack, int cellCacheHitCount, int cellCacheRequestCount, int cellCacheMissCount, int cellCachePendingCount, int statementStartCount, int statementEndCount, int executeStartCount, int executeEndCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCellCacheHitCount()intgetCellCacheMissCount()intgetCellCachePendingCount()intgetCellCacheRequestCount()intgetExecuteEndCount()intgetExecuteStartCount()intgetStatementEndCount()intgetStatementStartCount()StringtoString()
-
-
-
Field Detail
-
cellCacheHitCount
public final int cellCacheHitCount
-
cellCacheRequestCount
public final int cellCacheRequestCount
-
cellCacheMissCount
public final int cellCacheMissCount
-
cellCachePendingCount
public final int cellCachePendingCount
-
statementStartCount
public final int statementStartCount
-
statementEndCount
public final int statementEndCount
-
executeStartCount
public final int executeStartCount
-
executeEndCount
public final int executeEndCount
-
stack
public final String stack
A printout of the stack trace which represents the code stack when the event was created. Useful for debugging purposes and identifying orphaned connections and statements.
-
-
Constructor Detail
-
ConnectionInfo
public ConnectionInfo(String stack, int cellCacheHitCount, int cellCacheRequestCount, int cellCacheMissCount, int cellCachePendingCount, int statementStartCount, int statementEndCount, int executeStartCount, int executeEndCount)
-
-
Method Detail
-
getStatementStartCount
public int getStatementStartCount()
-
getCellCacheHitCount
public int getCellCacheHitCount()
-
getCellCacheRequestCount
public int getCellCacheRequestCount()
-
getCellCacheMissCount
public int getCellCacheMissCount()
-
getCellCachePendingCount
public int getCellCachePendingCount()
-
getStatementEndCount
public int getStatementEndCount()
-
getExecuteStartCount
public int getExecuteStartCount()
-
getExecuteEndCount
public int getExecuteEndCount()
-
-