Class ConnectionInfo


  • public class ConnectionInfo
    extends Object
    Information about a Mondrian connection.
    • 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()