Class ConnectionInfo

java.lang.Object
mondrian.server.monitor.ConnectionInfo

public class ConnectionInfo extends Object
Information about a Mondrian connection.
  • Field Details

    • 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 Details

    • ConnectionInfo

      public ConnectionInfo(String stack, int cellCacheHitCount, int cellCacheRequestCount, int cellCacheMissCount, int cellCachePendingCount, int statementStartCount, int statementEndCount, int executeStartCount, int executeEndCount)
  • Method Details

    • 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()
    • toString

      public String toString()
      Overrides:
      toString in class Object