Package com.sun.appserv.management.util.jmx

Examples of com.sun.appserv.management.util.jmx.AttributeNameMapper.addMapping()


    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    // old MBean advertises one set of names, supplies another!
    m.addMapping( "NumberOfConnections", "TotalConnections" );
    m.addMapping( "NumberOfBusyConnections", "ConnectionsInUse" );
    m.addMapping( "NumberOfIdleConnections", "ConnectionsIdle" );
  }
}
View Full Code Here


  {
    super.initStatisticNameMapper();
   
    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    m.addMapping( "ActiveIds", "ActiveIDs" );
  }
}
View Full Code Here

    name from getStatisticNames    name in Statistic[]
    NumConnAcquired          NumConnOpened
    NumConnReleased          NumConnClosed
    AverageConnWaitTime        AvgConnWaitTime
   */
    m.addMapping( "NumConnOpened", "NumConnAcquired"  );
    m.addMapping( "NumConnClosed""NumConnReleased"  );
    m.addMapping( "AvgConnWaitTime", "AverageConnWaitTime" );
  }
}
View Full Code Here

    NumConnAcquired          NumConnOpened
    NumConnReleased          NumConnClosed
    AverageConnWaitTime        AvgConnWaitTime
   */
    m.addMapping( "NumConnOpened", "NumConnAcquired"  );
    m.addMapping( "NumConnClosed""NumConnReleased"  );
    m.addMapping( "AvgConnWaitTime", "AverageConnWaitTime" );
  }
}
View Full Code Here

    NumConnReleased          NumConnClosed
    AverageConnWaitTime        AvgConnWaitTime
   */
    m.addMapping( "NumConnOpened", "NumConnAcquired"  );
    m.addMapping( "NumConnClosed""NumConnReleased"  );
    m.addMapping( "AvgConnWaitTime", "AverageConnWaitTime" );
  }
}
View Full Code Here

  {
    super.initStatisticNameMapper();
   
    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    m.addMapping( "JspCount", "JSPCount" );
    m.addMapping( "JspErrorCount", "JSPErrorCount" );
    m.addMapping( "JspReloadCount", "JSPReloadCount" );
  }
}
View Full Code Here

    super.initStatisticNameMapper();
   
    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    m.addMapping( "JspCount", "JSPCount" );
    m.addMapping( "JspErrorCount", "JSPErrorCount" );
    m.addMapping( "JspReloadCount", "JSPReloadCount" );
  }
}
View Full Code Here

   
    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    m.addMapping( "JspCount", "JSPCount" );
    m.addMapping( "JspErrorCount", "JSPErrorCount" );
    m.addMapping( "JspReloadCount", "JSPReloadCount" );
  }
}
View Full Code Here

  {
    super.initStatisticNameMapper();
   
    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    m.addMapping( "NumPassivations", "Passivations" );
    m.addMapping( "NumPassivationSuccess", "PassivationSuccesses" );
    m.addMapping( "NumExpiredSessionsRemoved", "ExpiredSessionsRemoved" );
    m.addMapping( "NumPassivationErrors", "PassivationErrors" );
    m.addMapping( "NumBeansInCache", "BeansInCache" );
  }
View Full Code Here

    super.initStatisticNameMapper();
   
    final AttributeNameMapper  m  = getStatisticNameMapper();
   
    m.addMapping( "NumPassivations", "Passivations" );
    m.addMapping( "NumPassivationSuccess", "PassivationSuccesses" );
    m.addMapping( "NumExpiredSessionsRemoved", "ExpiredSessionsRemoved" );
    m.addMapping( "NumPassivationErrors", "PassivationErrors" );
    m.addMapping( "NumBeansInCache", "BeansInCache" );
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.