* Creates a new DefaultInstrumentManagerImpl.
*/
public DefaultInstrumentManagerImpl()
{
// Initialize the Instrumentable elements.
m_totalMemoryInstrument = new ValueInstrument( "total-memory" );
m_freeMemoryInstrument = new ValueInstrument( "free-memory" );
m_memoryInstrument = new ValueInstrument( "memory" );
m_activeThreadCountInstrument = new ValueInstrument( "active-thread-count" );
m_registrationsInstrument = new CounterInstrument( "instrumentable-registrations" );
m_instrumentablesInstrument = new ValueInstrument( "instrumentables" );
m_instrumentsInstrument = new ValueInstrument( "instruments" );
m_samplesInstrument = new ValueInstrument( "samples" );
m_leasedSamplesInstrument = new ValueInstrument( "leased-samples" );
m_leaseRequestsInstrument = new CounterInstrument( "lease-requests" );
m_stateSavesInstrument = new CounterInstrument( "state-saves" );
m_stateSaveTimeInstrument = new ValueInstrument( "state-save-time" );
}