Kieker 1.11

Uses of Interface
kieker.monitoring.core.controller.IMonitoringController

Packages that use IMonitoringController
kieker.monitoring.core.controller   
kieker.monitoring.core.sampler   
kieker.monitoring.probe.cxf   
kieker.monitoring.probe.servlet   
kieker.monitoring.probe.spring.executions   
kieker.monitoring.probe.spring.flow   
kieker.monitoring.sampler.mxbean   
kieker.monitoring.sampler.sigar.samplers   
kieker.monitoring.writer   
kieker.monitoring.writer.filesystem   
kieker.monitoring.writer.filesystem.async   
 

Uses of IMonitoringController in kieker.monitoring.core.controller
 

Classes in kieker.monitoring.core.controller that implement IMonitoringController
 class MonitoringController
           
 

Methods in kieker.monitoring.core.controller that return IMonitoringController
static IMonitoringController MonitoringController.createInstance(Configuration configuration)
          This is a factory method creating a new monitoring controller instance using the given configuration.
static IMonitoringController MonitoringController.getInstance()
           
 

Uses of IMonitoringController in kieker.monitoring.core.sampler
 

Methods in kieker.monitoring.core.sampler with parameters of type IMonitoringController
 void ISampler.sample(IMonitoringController monitoringController)
          Triggers this ISampler to perform a measurement and to pass the data to the given IMonitoringController.
 

Constructors in kieker.monitoring.core.sampler with parameters of type IMonitoringController
ScheduledSamplerJob(IMonitoringController monitoringController, ISampler sensor)
          Constructs a new ScheduledSamplerJob with the given parameters.
 

Uses of IMonitoringController in kieker.monitoring.probe.cxf
 

Fields in kieker.monitoring.probe.cxf declared as IMonitoringController
protected  IMonitoringController OperationExecutionSOAPResponseOutInterceptor.monitoringController
          The monitoring controller of this interceptor.
protected  IMonitoringController OperationExecutionSOAPResponseInInterceptor.monitoringController
          The monitoring controller of this interceptor.
protected  IMonitoringController OperationExecutionSOAPRequestInInterceptor.monitoringController
          Note we are using this IMonitoringController only to access ITimeSource which is configured for the singleton instance, as this is the instance used by the corresponding other CXF probes.
protected  IMonitoringController OperationExecutionSOAPRequestOutInterceptor.monitoringController
          Note we are using this IMonitoringController only to access ITimeSource which is configured for the singleton instance, as this is the instance used by the corresponding other CXF probes.
 

Constructors in kieker.monitoring.probe.cxf with parameters of type IMonitoringController
OperationExecutionSOAPRequestInInterceptor(IMonitoringController monitoringCtrl)
          Creates a new instance of this class, using the given instance of a MonitoringController as controller.
OperationExecutionSOAPRequestOutInterceptor(IMonitoringController monitoringCtrl)
          Creates a new instance of this class, using the given instance of a MonitoringController as controller.
OperationExecutionSOAPResponseInInterceptor(IMonitoringController monitoringCtrl)
          Creates a new instance of this class, using the given instance of a MonitoringController as controller.
OperationExecutionSOAPResponseOutInterceptor(IMonitoringController monitoringCtrl)
          Creates a new instance of this class, using the given instance of a MonitoringController as controller.
 

Uses of IMonitoringController in kieker.monitoring.probe.servlet
 

Fields in kieker.monitoring.probe.servlet declared as IMonitoringController
protected static IMonitoringController SessionAndTraceRegistrationFilter.MONITORING_CTRL
           
 

Uses of IMonitoringController in kieker.monitoring.probe.spring.executions
 

Constructors in kieker.monitoring.probe.spring.executions with parameters of type IMonitoringController
OperationExecutionMethodInvocationInterceptor(IMonitoringController monitoringController)
          This constructor is mainly used for testing, providing a custom IMonitoringController instead of using the singleton instance.
 

Uses of IMonitoringController in kieker.monitoring.probe.spring.flow
 

Constructors in kieker.monitoring.probe.spring.flow with parameters of type IMonitoringController
OperationExecutionMethodInvocationInterceptor(IMonitoringController monitoringController)
          This constructor is mainly used for testing, providing a custom IMonitoringController instead of using the singleton instance.
 

Uses of IMonitoringController in kieker.monitoring.sampler.mxbean
 

Methods in kieker.monitoring.sampler.mxbean with parameters of type IMonitoringController
protected abstract  IMonitoringRecord[] AbstractMXBeanSampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
          Abstract method used as interface to realize concrete samplers.
protected  IMonitoringRecord[] ClassLoadingSampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
           
protected  IMonitoringRecord[] CompilationSampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
           
protected  IMonitoringRecord[] MemorySampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
           
protected  IMonitoringRecord[] UptimeSampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
           
protected  IMonitoringRecord[] ThreadsStatusSampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
           
protected  IMonitoringRecord[] GCSampler.createNewMonitoringRecords(long timestamp, java.lang.String hostname, java.lang.String vmName, IMonitoringController monitoringCtr)
           
 void AbstractMXBeanSampler.sample(IMonitoringController monitoringController)
          Perform one measurement with potential multiple records.
 

Uses of IMonitoringController in kieker.monitoring.sampler.sigar.samplers
 

Methods in kieker.monitoring.sampler.sigar.samplers with parameters of type IMonitoringController
 void CPUsCombinedPercSampler.sample(IMonitoringController monitoringController)
          Triggers this ISampler to perform a measurement and to pass the data to the given IMonitoringController.
 void MemSwapUsageSampler.sample(IMonitoringController monitoringCtr)
          Triggers this ISampler to perform a measurement and to pass the data to the given IMonitoringController.
 void CPUsDetailedPercSampler.sample(IMonitoringController monitoringController)
          Triggers this ISampler to perform a measurement and to pass the data to the given IMonitoringController.
 

Uses of IMonitoringController in kieker.monitoring.writer
 

Fields in kieker.monitoring.writer declared as IMonitoringController
protected  IMonitoringController AbstractMonitoringWriter.monitoringController
          The controller of this writer.
protected  IMonitoringController AbstractAsyncThread.monitoringController
          The monitoring controller for the current monitoring session.
 

Methods in kieker.monitoring.writer with parameters of type IMonitoringController
 void AbstractMonitoringWriter.setController(IMonitoringController controller)
           
 void IMonitoringWriter.setController(IMonitoringController monitoringController)
          Set the IMonitoringController controlling this writer.
 

Constructors in kieker.monitoring.writer with parameters of type IMonitoringController
AbstractAsyncThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue)
          Creates a new instance of this class using the given parameters.
 

Uses of IMonitoringController in kieker.monitoring.writer.filesystem
 

Methods in kieker.monitoring.writer.filesystem with parameters of type IMonitoringController
protected  AbstractFsWriterThread AsyncBinaryNFsWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntiresInFile, int maxlogSize, int maxLogFiles)
           
protected abstract  AbstractFsWriterThread AbstractAsyncFSWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntiresInFile, int maxlogSize, int maxLogFiles)
           
protected  AbstractFsWriterThread AsyncBinaryFsWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntiresInFile, int maxlogSize, int maxLogFiles)
           
protected  AbstractFsWriterThread AsyncFsWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntiresInFile, int maxlogSize, int maxLogFiles)
           
protected abstract  AbstractZipWriterThread AbstractAsyncZipWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, StringMappingFileWriter strMappingFileWriter, java.lang.String path, int maxEntiresInFile, int bufferSize, int level)
           
protected  AbstractZipWriterThread AsyncBinaryZipWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, StringMappingFileWriter mappingFileWriter, java.lang.String path, int maxEntiresInFile, int bufferSize, int level)
           
protected  AbstractZipWriterThread AsyncAsciiZipWriter.initWorker(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, StringMappingFileWriter mappingFileWriter, java.lang.String path, int maxEntiresInFile, int bufferSize, int level)
           
 

Uses of IMonitoringController in kieker.monitoring.writer.filesystem.async
 

Constructors in kieker.monitoring.writer.filesystem.async with parameters of type IMonitoringController
AbstractFsWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int maxLogSize, int maxLogFiles)
          Create a new AbstractFsWriterThread.
AbstractZipWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, StringMappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int level)
          Create a new AbstractZipWriterThread.
AsciiZipWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, StringMappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int bufferSize, int level)
          Create a new AsciiZipWriterThread.
BinaryFsWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int maxLogSize, int maxLogFiles, int bufferSize, BinaryCompressionMethod compressionMethod)
          Create a new BinaryFsWriterThread.
BinaryNFsWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int maxLogSize, int maxLogFiles, int bufferSize)
          Create a new BinaryNFsWriterThread.
BinaryZipWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, StringMappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int bufferSize, int level)
          Create a new BinaryZipWriterThread.
FsWriterThread(IMonitoringController monitoringController, java.util.concurrent.BlockingQueue<IMonitoringRecord> writeQueue, MappingFileWriter mappingFileWriter, java.lang.String path, int maxEntriesInFile, int maxLogSize, int maxLogFiles, boolean autoflush, int bufferSize)
          Create a new FsWriterThread.
 


Kieker 1.11

Copyright 2015 Kieker Project, http://kieker-monitoring.net