A B C D E F G H I J L M N O P R S T U W 

A

AbstractBatchProgressMonitor - Class in net.sf.appstatus.core.batch
Log job progress agent.
AbstractBatchProgressMonitor(String, IBatch) - Constructor for class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Constructor used for main monitor.
AbstractBatchProgressMonitor(String, IBatchProgressMonitor, int, IBatch) - Constructor for class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Protected constructor used to create a sub task.
AbstractCheck - Class in net.sf.appstatus.core.check
 
AbstractCheck() - Constructor for class net.sf.appstatus.core.check.AbstractCheck
 
AbstractHttpCheck - Class in net.sf.appstatus.demo.check
 
AbstractHttpCheck() - Constructor for class net.sf.appstatus.demo.check.AbstractHttpCheck
 
AbstractLoggingServiceMonitor - Class in net.sf.appstatus.core.services
Default support implementation, with logging.
AbstractLoggingServiceMonitor(IService, boolean, boolean) - Constructor for class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
AbstractPage - Class in net.sf.appstatus.web.pages
 
AbstractPage() - Constructor for class net.sf.appstatus.web.pages.AbstractPage
 
AbstractPropertyProvider - Class in net.sf.appstatus.core.property.impl
 
AbstractPropertyProvider() - Constructor for class net.sf.appstatus.core.property.impl.AbstractPropertyProvider
 
AbstractServiceMonitor - Class in net.sf.appstatus.core.services
 
AbstractServiceMonitor(boolean) - Constructor for class net.sf.appstatus.core.services.AbstractServiceMonitor
This class implements Thread local support for ServiceMonitor.
addBatch(String, String, String) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
addBatch(String, String, String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
addBatch(String, String, String) - Method in interface net.sf.appstatus.core.batch.IBatchManager
Creates and adds a new Batch to the batch manager.
addCall(Long, boolean, boolean, boolean, int) - Method in class net.sf.appstatus.services.CachedCallStatistics
 
addCall(Long, boolean, boolean, int) - Method in class net.sf.appstatus.services.CallStatistics
 
addCall(Long, boolean, boolean, boolean, int) - Method in class net.sf.appstatus.services.Service
This method is synchronized to ensure correct statistics computation
addResource(String, String, String) - Static method in class net.sf.appstatus.web.pages.Resources
 
addTo(List<IBatch>, IBatch) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
applyLayout(Map<String, String>, String) - Static method in class net.sf.appstatus.web.HtmlUtils
 
AppStatus - Class in net.sf.appstatus.core
This is the entry point for every feature of AppStatus.
AppStatus() - Constructor for class net.sf.appstatus.core.AppStatus
Status Service creator.
AppStatusCacheAdapter - Class in net.sf.appstatus.support.spring.cache
A simple adapter for Spring Caches with flags the current service call as "cacheHit".
AppStatusCacheAdapter(Cache) - Constructor for class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
AppStatusCacheManager - Class in net.sf.appstatus.support.spring.cache
This is an adapter for Spring cache manager which wraps returned cache instances.
AppStatusCacheManager() - Constructor for class net.sf.appstatus.support.spring.cache.AppStatusCacheManager
 
AppStatusServiceInterceptor - Class in net.sf.appstatus.support.aop
AOP AppStatus interceptor for services.
AppStatusServiceInterceptor() - Constructor for class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
 
AppStatusServices - Class in net.sf.appstatus.core
Deprecated.
AppStatusServices() - Constructor for class net.sf.appstatus.core.AppStatusServices
Deprecated.
Status Service creator.
AppStatusStatic - Class in net.sf.appstatus.core
 
AppStatusStatic() - Constructor for class net.sf.appstatus.core.AppStatusStatic
 

B

Batch - Class in net.sf.appstatus.batch
Bean batch implementation, It uses a progress monitor to track the batch status informations.
Batch(String) - Constructor for class net.sf.appstatus.batch.Batch
Creates a new Batch.
Batch(String, String, String) - Constructor for class net.sf.appstatus.batch.Batch
Creates a new Batch.
Batch - Class in net.sf.appstatus.batch.jdbc
 
Batch(BdBatch) - Constructor for class net.sf.appstatus.batch.jdbc.Batch
 
BATCH_CREATE_TABLE - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_DELETE - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_DELETE_OLD - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_DELETE_SUCCESS - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_FETCH - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_FETCH_BY_NAME - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_INSERT - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BATCH_UPDATE - Static variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
BatchConfiguration - Class in net.sf.appstatus.core.batch
Object representation of a batch execution's configuration.
BatchConfiguration(IBatchScheduleManager) - Constructor for class net.sf.appstatus.core.batch.BatchConfiguration
 
BatchDao - Class in net.sf.appstatus.batch.jdbc
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" scope="singleton"> <constructor-arg ref="dataSource" /> </bean> <bean id="batchDao" class="net.sf.appstatus.batch.jdbc.BatchDao" scope="singleton"> <property name="jdbcTemplate" ref="jdbcTemplate" /> </bean> <bean id="jdbcBatchManager" class="net.sf.appstatus.batch.jdbc.JdbcBatchManager" scope="singleton"> <property name="batchDao" ref="batchDao" /> </bean> Create table: BATCH UUID_BATCH varchar (256) GROUP_BATCH varchar (256) NAME_BATCH varchar (256) START_DATE DATETIME END_DATE DATETIME UPDATED DATETIME STATUS varchar (64) SUCCESS BOOLEAN ITEMCOUNT LONG ITEM varchar (256) CURRENT_TASK varchar (256) PROGRESS Float REJECT CLOB LAST_MSG varchar (1024)
BatchDao() - Constructor for class net.sf.appstatus.batch.jdbc.BatchDao
 
BatchDaoOracle - Class in net.sf.appstatus.batch.jdbc
Oracle-Compatible implementation.
BatchDaoOracle() - Constructor for class net.sf.appstatus.batch.jdbc.BatchDaoOracle
 
batchEnd(Batch) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
batchEnd(Batch) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
BatchPage - Class in net.sf.appstatus.web.pages
 
BatchPage() - Constructor for class net.sf.appstatus.web.pages.BatchPage
 
BatchSample - Class in net.sf.appstatus.demo.batch
Classic sample batch.
BatchSample() - Constructor for class net.sf.appstatus.demo.batch.BatchSample
 
BatchSample2 - Class in net.sf.appstatus.demo.batch
Classic sample batch, using spring injection for appstatus.
BatchSample2() - Constructor for class net.sf.appstatus.demo.batch.BatchSample2
 
BdBatch - Class in net.sf.appstatus.batch.jdbc
 
BdBatch() - Constructor for class net.sf.appstatus.batch.jdbc.BdBatch
 
beginCall(Object...) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
beginCall(Object...) - Method in class net.sf.appstatus.core.services.AbstractServiceMonitor
 
beginCall(Object...) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Notify of the beginning of a call to a service.
beginCall(Object...) - Method in class net.sf.appstatus.services.ServiceCall
 
beginTask(String, String, int) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
beginTask(String, String, int) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Begin a task execution.
beginTask(String, String, int) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Begin a task execution.
build() - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 

C

CachedCallStatistics - Class in net.sf.appstatus.services
 
CachedCallStatistics(int) - Constructor for class net.sf.appstatus.services.CachedCallStatistics
 
cacheHit - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
cacheHit() - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
cacheHit() - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Reports that a cache system was used instead of performing the actual call.
cacheHit() - Method in class net.sf.appstatus.services.ServiceCall
 
cacheHits - Variable in class net.sf.appstatus.services.Service
 
CallStatistics - Class in net.sf.appstatus.services
 
CallStatistics(int) - Constructor for class net.sf.appstatus.services.CallStatistics
Because firsts runs are always longer than real times, min and max measurements can be delayed until the services is called a few times.
checkAll() - Method in class net.sf.appstatus.core.AppStatus
 
checkAll(Locale) - Method in class net.sf.appstatus.core.AppStatus
 
checkers - Variable in class net.sf.appstatus.core.AppStatus
 
CheckResultBuilder - Class in net.sf.appstatus.core.check
 
CheckResultBuilder() - Constructor for class net.sf.appstatus.core.check.CheckResultBuilder
 
checkStatus() - Method in class net.sf.appstatus.core.check.AbstractCheck
Deprecated.
checkStatus(Locale) - Method in class net.sf.appstatus.core.check.AbstractCheck
This method must be overriden and implemented by Checks.
checkStatus(Locale) - Method in interface net.sf.appstatus.core.check.ICheck
 
checkStatus(Locale) - Method in class net.sf.appstatus.core.check.impl.JvmCheck
 
checkStatus() - Method in class net.sf.appstatus.core.check.impl.ServicesFailureCheck
 
checkStatus() - Method in class net.sf.appstatus.core.check.impl.ServicesPerformanceCheck
 
checkStatus() - Method in class net.sf.appstatus.demo.check.DummyStatusChecker
 
checkStatus() - Method in class net.sf.appstatus.demo.check.GoogleHttpStatusChecker
 
checkStatus() - Method in class net.sf.appstatus.demo.check.GooglePingStatusChecker
 
clear() - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
code(int) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 
collectionToDelimitedString(Collection, String, String, String) - Static method in class net.sf.appstatus.web.HtmlUtils
 
compareTo(ICheckResult) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
compareTo(LoggerConfig) - Method in class net.sf.appstatus.core.loggers.LoggerConfig
 
compareTo(IService) - Method in class net.sf.appstatus.services.Service
 
Configuration - Class in net.sf.appstatus.core
Deprecated.
Configuration() - Constructor for class net.sf.appstatus.core.Configuration
Deprecated.
 
context - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
context(String, String) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
context(String, String) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
 
convertToIBatch(List<BdBatch>) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
correlationId - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
correlationId(String) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
correlationId(String) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
 
countAndDetail(List<String>) - Static method in class net.sf.appstatus.web.HtmlUtils
 
createDbIfNecessary() - Method in class net.sf.appstatus.batch.jdbc.BatchDao
Check for storage table and create if necessary.
createResult(int) - Method in class net.sf.appstatus.core.check.AbstractCheck
Deprecated.
use CheckResultBuilder instead.
createSubTask(int) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Create a sub task of this task with the amount of work the subtask execution will done.
createSubTask(int) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Create a sub task of this task with the amount of work the subtask execution will done.
currentChildren - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
currentItem - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Current item being processed
CustomPage - Class in net.sf.appstatus.demo.pages
 
CustomPage() - Constructor for class net.sf.appstatus.demo.pages.CustomPage
 

D

deleteBatch(String) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
deleteOldBatches(int) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
deleteSuccessBatches() - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
description(String) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 
description(String, Object...) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 
doGet(HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.demo.batch.LaunchClassicBatchSampleServlet
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.demo.pages.CustomPage
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in interface net.sf.appstatus.web.IPage
Process GET requests.
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.AbstractPage
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.BatchPage
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.LoggersPage
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.RadiatorPage
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Static method in class net.sf.appstatus.web.pages.Resources
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.ServicesPage
 
doGet(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.StatusPage
 
doGet(HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.StatusServlet
 
doGet(HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.StatusWebHandler
Handle a GET request.
doGetHTML(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.ServicesPage
 
doGetHTML(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.StatusPage
 
doGetJSON(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.StatusPage
 
doHttpGet(String) - Method in class net.sf.appstatus.demo.check.AbstractHttpCheck
 
done() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
done - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
done() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Set the task is done.
done() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Set the task is done.
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.demo.pages.CustomPage
 
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in interface net.sf.appstatus.web.IPage
Process POST requests.
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.AbstractPage
 
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.BatchPage
 
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.LoggersPage
 
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.RadiatorPage
 
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.ServicesPage
 
doPost(StatusWebHandler, HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.pages.StatusPage
 
doPost(HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.StatusServlet
 
doPost(HttpServletRequest, HttpServletResponse) - Method in class net.sf.appstatus.web.StatusWebHandler
Handle a POST request.
DummyPropertyProvider - Class in net.sf.appstatus.demo.property
 
DummyPropertyProvider() - Constructor for class net.sf.appstatus.demo.property.DummyPropertyProvider
 
DummyStatusChecker - Class in net.sf.appstatus.demo.check
 
DummyStatusChecker() - Constructor for class net.sf.appstatus.demo.check.DummyStatusChecker
 

E

endBatch(boolean) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
endCall() - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
endCall() - Method in class net.sf.appstatus.core.services.AbstractServiceMonitor
 
endCall() - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Notify the end of a call to a service.
endCall() - Method in class net.sf.appstatus.services.ServiceCall
 
endTask(boolean) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
endTime - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
endTime - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
equals(Object) - Method in class net.sf.appstatus.batch.Batch
 
equals(Object) - Method in class net.sf.appstatus.batch.jdbc.Batch
 
equals(Object) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
ERROR - Static variable in interface net.sf.appstatus.core.check.ICheckResult
 
error - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
error(String) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
error(String) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Reports an error : the call has succeed but returns an error (with data).
errorMessage - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
evict(Object) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
executionId - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
executionTime - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
executionTime(long) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
executionTime(long) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Manually set the execution time.

F

fail(String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
fail(String, Throwable) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
fail(String) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
fail(String, Throwable) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
fail(String) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Report global failure.
fail(String, Throwable) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Report global failure.
failure - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
failure(String) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
failure(String, Exception) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
failure(String) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Reports a failure : the call has failed completely
failure(String, Exception) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Reports a failure : the call has failed completely with exception e.
failureException - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
failureReason - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
FATAL - Static variable in class net.sf.appstatus.core.check.AbstractCheck
 
fatal() - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 
fetch(String, String, int) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
fetchError(int) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
fetchFinished(int) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
fetchRunning(int) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
formatCodeDisplay(int) - Method in class net.sf.appstatus.jmx.StatusJmx
Human readable code format.
from(ICheck) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 

G

generateBeginTable(StrBuilder, int) - Static method in class net.sf.appstatus.web.HtmlUtils
Prints table start tag, or a message if table is empty.
generateEndTable(StrBuilder, int) - Static method in class net.sf.appstatus.web.HtmlUtils
 
generateHeaders(StrBuilder, Object...) - Static method in class net.sf.appstatus.web.HtmlUtils
Outputs table headers.
generateRow(StrBuilder, String, Object...) - Static method in class net.sf.appstatus.web.HtmlUtils
Outputs one table row.
get(Object) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
get(Object, Class<T>) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
getApplicationName() - Method in class net.sf.appstatus.web.StatusWebHandler
 
getAppStatus() - Method in class net.sf.appstatus.web.StatusWebHandler
 
getAvgNestedCalls() - Method in interface net.sf.appstatus.core.services.IService
 
getAvgNestedCalls() - Method in class net.sf.appstatus.services.CallStatistics
 
getAvgNestedCalls() - Method in class net.sf.appstatus.services.Service
 
getAvgNestedCallsWithCache() - Method in interface net.sf.appstatus.core.services.IService
 
getAvgNestedCallsWithCache() - Method in class net.sf.appstatus.services.Service
 
getAvgResponseTime() - Method in interface net.sf.appstatus.core.services.IService
 
getAvgResponseTime() - Method in class net.sf.appstatus.services.CallStatistics
 
getAvgResponseTime() - Method in class net.sf.appstatus.services.Service
 
getAvgResponseTimeWithCache() - Method in interface net.sf.appstatus.core.services.IService
 
getAvgResponseTimeWithCache() - Method in class net.sf.appstatus.services.Service
 
getBatch() - Method in class net.sf.appstatus.batch.InProcessBatchProgressMonitor
 
getBatch() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
getBatch() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getBatchConfigurations() - Method in interface net.sf.appstatus.core.batch.IBatchScheduleManager
Getting the batch's configurations.
getBatches(String, String) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
getBatches(String, String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
getBatches(String, String) - Method in interface net.sf.appstatus.core.batch.IBatchManager
Ordered by update date DESC
getBatchManager() - Method in class net.sf.appstatus.core.AppStatus
 
getBatchProgressMonitor(String, String, String) - Method in class net.sf.appstatus.core.AppStatus
 
getBatchScheduleManager() - Method in class net.sf.appstatus.core.AppStatus
 
getBdBatch() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getCache(String) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheManager
 
getCacheHits() - Method in interface net.sf.appstatus.core.services.IService
 
getCacheHits() - Method in class net.sf.appstatus.services.Service
 
getCacheNames() - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheManager
 
getCacheStatistics() - Method in class net.sf.appstatus.services.CachedCallStatistics
 
getCategory() - Method in class net.sf.appstatus.core.property.impl.HostPropertyProvider
 
getCategory() - Method in class net.sf.appstatus.core.property.impl.JvmPropertyProvider
 
getCategory() - Method in class net.sf.appstatus.core.property.impl.WarMavenVersionProvider
getCategory() - Method in interface net.sf.appstatus.core.property.IPropertyProvider
 
getCategory() - Method in class net.sf.appstatus.demo.property.DummyPropertyProvider
 
getCode() - Method in interface net.sf.appstatus.core.check.ICheckResult
 
getCode() - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
getConfiguration() - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
getConfiguration() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
getConfiguration() - Method in class net.sf.appstatus.core.AppStatus
 
getConfiguration() - Method in interface net.sf.appstatus.core.batch.IBatchManager
Get current configuration.
getConfiguration() - Method in class net.sf.appstatus.core.check.AbstractCheck
 
getConfiguration() - Method in interface net.sf.appstatus.core.loggers.ILoggersManager
Get current configuration.
getConfiguration() - Method in class net.sf.appstatus.core.loggers.impl.Log4jLoggersManager
 
getConfiguration() - Method in class net.sf.appstatus.core.loggers.impl.LogbackLoggersManager
 
getConfiguration() - Method in interface net.sf.appstatus.core.services.IServiceManager
Get current configuration.
getConfiguration() - Method in class net.sf.appstatus.services.InProcessServiceManager
 
getCssLocation() - Method in class net.sf.appstatus.web.StatusWebHandler
 
getCurrentItem() - Method in class net.sf.appstatus.batch.Batch
Retrieve the current processed item.
getCurrentItem() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getCurrentItem() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getCurrentItem() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getCurrentItem() - Method in interface net.sf.appstatus.core.batch.IBatch
 
getCurrentRate() - Method in interface net.sf.appstatus.core.services.IService
 
getCurrentRate() - Method in class net.sf.appstatus.services.Service
 
getCurrentServiceMonitor() - Static method in class net.sf.appstatus.core.services.ServiceMonitorLocator
 
getCurrentTask() - Method in class net.sf.appstatus.batch.Batch
Retrieve the current task.
getCurrentTask() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getCurrentTask() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getCurrentTask() - Method in interface net.sf.appstatus.core.batch.IBatch
 
getDescription() - Method in interface net.sf.appstatus.core.check.ICheckResult
 
getDescription() - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
getDirectStatistics() - Method in class net.sf.appstatus.services.CachedCallStatistics
 
getEndDate() - Method in class net.sf.appstatus.batch.Batch
 
getEndDate() - Method in class net.sf.appstatus.batch.InProcessBatchProgressMonitor
 
getEndDate() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getEndDate() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getEndDate() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Returns end date is the task is finished, or an estimate if task is still running.
getEndDate() - Method in interface net.sf.appstatus.core.batch.IBatch
Retrieve the end date of the job execution.
getErrorBatches() - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
getErrorBatches() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
getErrorBatches() - Method in interface net.sf.appstatus.core.batch.IBatchManager
Ordered by update date DESC
getErrors() - Method in interface net.sf.appstatus.core.services.IService
 
getErrors() - Method in class net.sf.appstatus.services.CachedCallStatistics
 
getErrors() - Method in class net.sf.appstatus.services.CallStatistics
 
getErrors() - Method in class net.sf.appstatus.services.Service
 
getFailures() - Method in interface net.sf.appstatus.core.services.IService
 
getFailures() - Method in class net.sf.appstatus.services.CachedCallStatistics
 
getFailures() - Method in class net.sf.appstatus.services.CallStatistics
 
getFailures() - Method in class net.sf.appstatus.services.Service
 
getFinishedBatches() - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
getFinishedBatches() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
getFinishedBatches() - Method in interface net.sf.appstatus.core.batch.IBatchManager
Ordered by update date DESC
getFullStatus() - Method in class net.sf.appstatus.jmx.StatusJmx
 
getGroup() - Method in class net.sf.appstatus.batch.Batch
 
getGroup() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getGroup() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getGroup() - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
getGroup() - Method in interface net.sf.appstatus.core.batch.IBatch
Getting the group of batch.
getGroup() - Method in interface net.sf.appstatus.core.batch.IBatchConfiguration
 
getGroup() - Method in interface net.sf.appstatus.core.check.ICheck
 
getGroup() - Method in interface net.sf.appstatus.core.check.ICheckResult
 
getGroup() - Method in class net.sf.appstatus.core.check.impl.JvmCheck
 
getGroup() - Method in class net.sf.appstatus.core.check.impl.ServicesFailureCheck
 
getGroup() - Method in class net.sf.appstatus.core.check.impl.ServicesPerformanceCheck
 
getGroup() - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
getGroup() - Method in interface net.sf.appstatus.core.services.IService
 
getGroup() - Method in class net.sf.appstatus.demo.check.DummyStatusChecker
 
getGroup() - Method in class net.sf.appstatus.demo.check.GoogleHttpStatusChecker
 
getGroup() - Method in class net.sf.appstatus.demo.check.GooglePingStatusChecker
 
getGroup() - Method in class net.sf.appstatus.services.Service
 
getHits() - Method in interface net.sf.appstatus.core.services.IService
 
getHits() - Method in class net.sf.appstatus.services.CallStatistics
 
getHits() - Method in class net.sf.appstatus.services.Service
 
getId() - Method in class net.sf.appstatus.demo.pages.CustomPage
 
getId() - Method in class net.sf.appstatus.services.ServiceCall
 
getId() - Method in interface net.sf.appstatus.web.IPage
Id of this page.
getId() - Method in class net.sf.appstatus.web.pages.AbstractPage
 
getId() - Method in class net.sf.appstatus.web.pages.BatchPage
 
getId() - Method in class net.sf.appstatus.web.pages.LoggersPage
 
getId() - Method in class net.sf.appstatus.web.pages.RadiatorPage
 
getId() - Method in class net.sf.appstatus.web.pages.ServicesPage
 
getId() - Method in class net.sf.appstatus.web.pages.StatusPage
 
getInstance() - Static method in class net.sf.appstatus.core.AppStatusStatic
 
getInstance(String) - Method in interface net.sf.appstatus.core.IObjectInstantiationListener
Try to instantiate the 'className' object.
getInstance(String) - Method in class net.sf.appstatus.jmx.SpringBeanInstantiationListener
 
getInstance(String) - Method in class net.sf.appstatus.support.spring.SpringObjectInstantiationListener
 
getInstance(String) - Method in class net.sf.appstatus.web.SpringObjectInstantiationListener
 
getItemCount() - Method in class net.sf.appstatus.batch.Batch
 
getItemCount() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getItemCount() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getItemCount() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getItemCount() - Method in interface net.sf.appstatus.core.batch.IBatch
 
getItemCount() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitorExt
 
getLastExecution() - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
getLastExecution() - Method in interface net.sf.appstatus.core.batch.IBatchConfiguration
 
getLastMessage() - Method in class net.sf.appstatus.batch.Batch
 
getLastMessage() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getLastMessage() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getLastMessage() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getLastMessage() - Method in interface net.sf.appstatus.core.batch.IBatch
Retrieve the last messages.
getLastMessage() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitorExt
 
getLastUpdate() - Method in class net.sf.appstatus.batch.Batch
 
getLastUpdate() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getLastUpdate() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getLastUpdate() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getLastUpdate() - Method in interface net.sf.appstatus.core.batch.IBatch
 
getLastUpdate() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
 
getLevel() - Method in class net.sf.appstatus.core.loggers.LoggerConfig
 
getLocation() - Method in class net.sf.appstatus.web.pages.Resources.ResourceDefinition
 
getLogger() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getLogger() - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
getLoggers() - Method in interface net.sf.appstatus.core.loggers.ILoggersManager
 
getLoggers() - Method in class net.sf.appstatus.core.loggers.impl.Log4jLoggersManager
 
getLoggers() - Method in class net.sf.appstatus.core.loggers.impl.LogbackLoggersManager
 
getLoggersManager() - Method in class net.sf.appstatus.core.AppStatus
 
getLogMessage() - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
Returns the log message (at the end of the call).
getMainMonitor() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
getMainMonitor() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Get the top parent.
getMaintenanceFile() - Method in class net.sf.appstatus.core.AppStatus
 
getManager() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
getMaxResponseTime() - Method in interface net.sf.appstatus.core.services.IService
 
getMaxResponseTime() - Method in class net.sf.appstatus.services.CallStatistics
 
getMaxResponseTime() - Method in class net.sf.appstatus.services.Service
 
getMaxResponseTimeWithCache() - Method in interface net.sf.appstatus.core.services.IService
 
getMaxResponseTimeWithCache() - Method in class net.sf.appstatus.services.Service
 
getMimeType() - Method in class net.sf.appstatus.web.pages.Resources.ResourceDefinition
 
getMinResponseTime() - Method in interface net.sf.appstatus.core.services.IService
 
getMinResponseTime() - Method in class net.sf.appstatus.services.CallStatistics
 
getMinResponseTime() - Method in class net.sf.appstatus.services.Service
 
getMinResponseTimeWithCache() - Method in interface net.sf.appstatus.core.services.IService
 
getMinResponseTimeWithCache() - Method in class net.sf.appstatus.services.Service
 
getMonitor(IBatch) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
getMonitor(IBatch) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
getMonitor(IBatch) - Method in interface net.sf.appstatus.core.batch.IBatchManager
Returns the batch monitor for this batch.
getMonitor(IService) - Method in interface net.sf.appstatus.core.services.IServiceManager
Returns a monitor for a new service call.
getMonitor(IService) - Method in class net.sf.appstatus.services.InProcessServiceManager
Returns a monitor for a new service call.
getMonitor(IServiceManager, MethodInvocation) - Method in interface net.sf.appstatus.support.aop.IPreServiceCallback
This method allows to create the AppStatus monitor according to the invocation.
getName() - Method in class net.sf.appstatus.batch.Batch
 
getName() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getName() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getName() - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
getName() - Method in interface net.sf.appstatus.core.batch.IBatch
Getting the name of batch.
getName() - Method in interface net.sf.appstatus.core.batch.IBatchConfiguration
 
getName() - Method in interface net.sf.appstatus.core.check.ICheck
 
getName() - Method in class net.sf.appstatus.core.check.impl.JvmCheck
 
getName() - Method in class net.sf.appstatus.core.check.impl.ServicesFailureCheck
 
getName() - Method in class net.sf.appstatus.core.check.impl.ServicesPerformanceCheck
 
getName() - Method in class net.sf.appstatus.core.loggers.LoggerConfig
 
getName() - Method in interface net.sf.appstatus.core.services.IService
 
getName() - Method in class net.sf.appstatus.demo.check.DummyStatusChecker
 
getName() - Method in class net.sf.appstatus.demo.check.GoogleHttpStatusChecker
 
getName() - Method in class net.sf.appstatus.demo.check.GooglePingStatusChecker
 
getName() - Method in class net.sf.appstatus.demo.pages.CustomPage
 
getName() - Method in class net.sf.appstatus.services.Service
 
getName() - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
getName() - Method in interface net.sf.appstatus.web.IPage
Returns page name, used in url to trigger page rendering.
getName() - Method in class net.sf.appstatus.web.pages.AbstractPage
 
getName() - Method in class net.sf.appstatus.web.pages.BatchPage
 
getName() - Method in class net.sf.appstatus.web.pages.LoggersPage
 
getName() - Method in class net.sf.appstatus.web.pages.RadiatorPage
 
getName() - Method in class net.sf.appstatus.web.pages.ServicesPage
 
getName() - Method in class net.sf.appstatus.web.pages.StatusPage
 
getNativeCache() - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
getNextDate(String, Date) - Method in interface net.sf.appstatus.core.batch.IBatchScheduleManager
Convert the execution schedule (cron for example).
getNextExecution() - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
getNextExecution() - Method in interface net.sf.appstatus.core.batch.IBatchConfiguration
 
getPage(StatusWebHandler, Map<String, String>) - Method in class net.sf.appstatus.web.pages.AbstractPage
 
getPages() - Method in class net.sf.appstatus.web.StatusWebHandler
 
getParentWork() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getProbeName() - Method in interface net.sf.appstatus.core.check.ICheckResult
 
getProbeName() - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
getProgress() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getProgress() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getProgress() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitorExt
Get current progress.
getProgressMonitor() - Method in class net.sf.appstatus.batch.Batch
 
getProgressMonitor() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getProgressStatus() - Method in class net.sf.appstatus.batch.Batch
 
getProgressStatus() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getProgressStatus() - Method in interface net.sf.appstatus.core.batch.IBatch
Retrieve the current progress status of the job execution.
getProperties() - Method in class net.sf.appstatus.core.AppStatus
 
getProperties() - Method in class net.sf.appstatus.core.property.impl.HostPropertyProvider
 
getProperties() - Method in class net.sf.appstatus.core.property.impl.JvmPropertyProvider
 
getProperties() - Method in class net.sf.appstatus.core.property.impl.WarMavenVersionProvider
getProperties() - Method in interface net.sf.appstatus.core.property.IPropertyProvider
 
getProperties() - Method in class net.sf.appstatus.demo.property.DummyPropertyProvider
 
getRefs() - Method in class net.sf.appstatus.demo.batch.ServiceSample
 
getRefsAOP() - Method in class net.sf.appstatus.demo.batch.ServiceSample
 
getReject() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getRejectedItems() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Get the list of rejected items.
getRejectedItemsId() - Method in class net.sf.appstatus.batch.Batch
 
getRejectedItemsId() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getRejectedItemsId() - Method in interface net.sf.appstatus.core.batch.IBatch
Return all the rejected items.
getResolutionSteps() - Method in interface net.sf.appstatus.core.check.ICheckResult
On error, should provide some advices on how to solve the issue.
getResolutionSteps() - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
getRunning() - Method in interface net.sf.appstatus.core.services.IService
 
getRunning() - Method in class net.sf.appstatus.services.Service
 
getRunningBatches() - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
getRunningBatches() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
getRunningBatches() - Method in class net.sf.appstatus.core.AppStatus
Deprecated.
getRunningBatches() - Method in interface net.sf.appstatus.core.batch.IBatchManager
Returns the list of batchs which are currently running.
getSchedule() - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
getSchedule() - Method in interface net.sf.appstatus.core.batch.IBatchConfiguration
 
getService(String, String) - Method in interface net.sf.appstatus.core.services.IServiceManager
Create or get the service definition identified by group and name.
getService(String, String) - Method in class net.sf.appstatus.services.InProcessServiceManager
Create or get the service definition identified by group and name.
getServiceManager() - Method in class net.sf.appstatus.core.AppStatus
 
getServiceMonitor(String, String) - Method in class net.sf.appstatus.core.AppStatus
 
getServiceMonitor(String, String) - Method in class net.sf.appstatus.core.AppStatusServices
Deprecated.
 
getServiceMonitorStack() - Static method in class net.sf.appstatus.core.services.ServiceMonitorLocator
 
getServices() - Method in class net.sf.appstatus.core.AppStatus
 
getServices() - Method in class net.sf.appstatus.core.AppStatusServices
Deprecated.
 
getServices() - Method in interface net.sf.appstatus.core.services.IServiceManager
List all current services.
getServices() - Method in class net.sf.appstatus.services.InProcessServiceManager
List all current services.
getServicesProperties() - Method in class net.sf.appstatus.jmx.StatusJmx
 
getServletContext() - Method in class net.sf.appstatus.core.AppStatus
 
getServletContext() - Method in class net.sf.appstatus.core.AppStatusServices
Deprecated.
 
getServletContext() - Method in interface net.sf.appstatus.core.IServletContextProvider
 
getSql(int) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
Get SQL query for the requested action.
getSql(int) - Method in class net.sf.appstatus.batch.jdbc.BatchDaoOracle
 
getStartDate() - Method in class net.sf.appstatus.batch.Batch
 
getStartDate() - Method in class net.sf.appstatus.batch.InProcessBatchProgressMonitor
 
getStartDate() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getStartDate() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getStartDate() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getStartDate() - Method in interface net.sf.appstatus.core.batch.IBatch
Return the starting date of the job execution.
getStartTime() - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
getStatus() - Method in class net.sf.appstatus.batch.Batch
 
getStatus() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getStatus() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getStatus() - Method in interface net.sf.appstatus.core.batch.IBatch
Retrieve the status of the batch execution.
getStatus() - Method in class net.sf.appstatus.jmx.StatusJmx
 
getSuccess() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getTaskDescription() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getTaskGroup() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getTaskName() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
getTotalHits() - Method in class net.sf.appstatus.services.CachedCallStatistics
 
getTotalWork() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Retrieve the total amount of work for this task.
getTotalWork() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Retrieve the total amount of work for this task.
getTotalWork() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitorExt
Retrieve the total amount of work for this task.
getUuid() - Method in class net.sf.appstatus.batch.Batch
 
getUuid() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
getUuid() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
getUuid() - Method in interface net.sf.appstatus.core.batch.IBatch
Retrieve all the jobs execution monitored by this agent monitor.
getWritingDelay() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
GoogleHttpStatusChecker - Class in net.sf.appstatus.demo.check
 
GoogleHttpStatusChecker() - Constructor for class net.sf.appstatus.demo.check.GoogleHttpStatusChecker
 
GooglePingStatusChecker - Class in net.sf.appstatus.demo.check
 
GooglePingStatusChecker() - Constructor for class net.sf.appstatus.demo.check.GooglePingStatusChecker
 
group - Variable in class net.sf.appstatus.services.Service
 

H

handleException(IServiceMonitor, MethodInvocation, Exception) - Method in interface net.sf.appstatus.support.aop.IPostServiceCallback
This method allows to analyze an exception and call monitor#failure() or monitor#error() if necessary.
handleResult(IServiceMonitor, MethodInvocation, Object) - Method in interface net.sf.appstatus.support.aop.IPostServiceCallback
This method allows to analyze the result of a service call and call monitor#failure() or monitor#error() if necessary.
hashCode() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
hashCode() - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
hits - Variable in class net.sf.appstatus.services.Service
 
HostPropertyProvider - Class in net.sf.appstatus.core.property.impl
Provides local host name and ip.
HostPropertyProvider() - Constructor for class net.sf.appstatus.core.property.impl.HostPropertyProvider
 
HtmlUtils - Class in net.sf.appstatus.web
Support class for generating Html tables.
HtmlUtils() - Constructor for class net.sf.appstatus.web.HtmlUtils
 

I

IAppStatusActivationCallback - Interface in net.sf.appstatus.support.aop
 
IAppStatusAware - Interface in net.sf.appstatus.core.check
 
IBatch - Interface in net.sf.appstatus.core.batch
Job progress agent monitor.
IBatchConfiguration - Interface in net.sf.appstatus.core.batch
 
IBatchManager - Interface in net.sf.appstatus.core.batch
 
IBatchProgressMonitor - Interface in net.sf.appstatus.core.batch
Monitor dedicated to monitor a job execution.
IBatchProgressMonitorExt - Interface in net.sf.appstatus.core.batch
Monitor dedicated to monitor a job execution.
IBatchScheduleManager - Interface in net.sf.appstatus.core.batch
Interface which must be implemented to read a set of execution expr.
ICheck - Interface in net.sf.appstatus.core.check
Interface for status check
ICheckResult - Interface in net.sf.appstatus.core.check
Status check result.
IConfigurationAware - Interface in net.sf.appstatus.core.check
 
ILoggersManager - Interface in net.sf.appstatus.core.loggers
 
init() - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
init() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
init() - Method in class net.sf.appstatus.core.AppStatus
 
init() - Method in class net.sf.appstatus.core.AppStatusServices
Deprecated.
 
init() - Method in interface net.sf.appstatus.core.batch.IBatchManager
 
init() - Method in class net.sf.appstatus.jmx.StatusJmx
Load configuration from /status-jmx-conf.properties file.
init(ServletConfig) - Method in class net.sf.appstatus.web.StatusServlet
Init the AppStatus Web UI.
init() - Method in class net.sf.appstatus.web.StatusWebHandler
Does the initialization work.
InProcessBatchManager - Class in net.sf.appstatus.batch
This implementation stores batch history and status in memory.
InProcessBatchManager() - Constructor for class net.sf.appstatus.batch.InProcessBatchManager
 
InProcessBatchProgressMonitor - Class in net.sf.appstatus.batch
Log job progress agent.
InProcessBatchProgressMonitor(String, IBatch, InProcessBatchManager) - Constructor for class net.sf.appstatus.batch.InProcessBatchProgressMonitor
Default constructor.
InProcessServiceManager - Class in net.sf.appstatus.services
A service manager which stores service statistics in an ArrayList.
InProcessServiceManager() - Constructor for class net.sf.appstatus.services.InProcessServiceManager
 
invoke(MethodInvocation) - Method in class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
 
IObjectInstantiationListener - Interface in net.sf.appstatus.core
Object instantiation listener.
IPage - Interface in net.sf.appstatus.web
This interface is implemented by every page of the web interface.
IPostServiceCallback - Interface in net.sf.appstatus.support.aop
Allows to define a custom service result analysis when using AppStatusServiceInterceptor.
IPreServiceCallback - Interface in net.sf.appstatus.support.aop
 
IPropertyProvider - Interface in net.sf.appstatus.core.property
Interface used to inject properties in the status page.
isActive(MethodInvocation) - Method in interface net.sf.appstatus.support.aop.IAppStatusActivationCallback
This method allows enable/disable AppStatus dynamically.
isCancelRequested() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
isCancelRequested() - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Returns true if cancel has been requested for the current job, usually from a control UI.
isDone() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
isEmpty(Collection<?>) - Static method in class net.sf.appstatus.web.HtmlUtils
Null-safe empty test for Collections.
IService - Interface in net.sf.appstatus.core.services
A service with associated metrics.
IServiceManager - Interface in net.sf.appstatus.core.services
Service manager.
IServiceMonitor - Interface in net.sf.appstatus.core.services
Service monitor
IServletContextAware - Interface in net.sf.appstatus.core
ICheck and IPropertyProvider can implement this interface to get ServletContext.
IServletContextProvider - Interface in net.sf.appstatus.core
Used to inject ServletContext in AppStatus.
isFatal() - Method in interface net.sf.appstatus.core.check.ICheckResult
If true, the application status will be set to ERROR.
isFatal() - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
isMaintenance() - Method in class net.sf.appstatus.core.AppStatus
 
isSuccess() - Method in class net.sf.appstatus.batch.Batch
 
isSuccess() - Method in class net.sf.appstatus.batch.jdbc.Batch
 
isSuccess() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
isSuccess() - Method in interface net.sf.appstatus.core.batch.IBatch
 
itemCount - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 

J

JdbcBatchManager - Class in net.sf.appstatus.batch.jdbc
 
JdbcBatchManager() - Constructor for class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
JdbcBatchProgressMonitor - Class in net.sf.appstatus.batch.jdbc
Log job progress agent.
JdbcBatchProgressMonitor(String, IBatch, BatchDao) - Constructor for class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
Default constructor.
json(String, Object) - Static method in class net.sf.appstatus.web.HtmlUtils
 
JvmCheck - Class in net.sf.appstatus.core.check.impl
 
JvmCheck() - Constructor for class net.sf.appstatus.core.check.impl.JvmCheck
 
JvmPropertyProvider - Class in net.sf.appstatus.core.property.impl
Provides JVM informations : name vendor version uptime start time heap memory
JvmPropertyProvider() - Constructor for class net.sf.appstatus.core.property.impl.JvmPropertyProvider
 

L

LaunchClassicBatchSampleServlet - Class in net.sf.appstatus.demo.batch
Sample service call servlet, used to generate some service usage.
LaunchClassicBatchSampleServlet() - Constructor for class net.sf.appstatus.demo.batch.LaunchClassicBatchSampleServlet
 
LEVEL_DEBUG - Static variable in interface net.sf.appstatus.core.loggers.ILoggersManager
 
Log4jLoggersManager - Class in net.sf.appstatus.core.loggers.impl
A log manager for log4j.
Log4jLoggersManager() - Constructor for class net.sf.appstatus.core.loggers.impl.Log4jLoggersManager
 
LogbackLoggersManager - Class in net.sf.appstatus.core.loggers.impl
A log manager for Logback.
LogbackLoggersManager() - Constructor for class net.sf.appstatus.core.loggers.impl.LogbackLoggersManager
 
LoggerConfig - Class in net.sf.appstatus.core.loggers
 
LoggerConfig() - Constructor for class net.sf.appstatus.core.loggers.LoggerConfig
 
LoggerConfig(String, String) - Constructor for class net.sf.appstatus.core.loggers.LoggerConfig
 
LoggersPage - Class in net.sf.appstatus.web.pages
Display loggers current level and let the user change them.
LoggersPage() - Constructor for class net.sf.appstatus.web.pages.LoggersPage
 
LOGO - Static variable in class net.sf.appstatus.web.pages.Resources
 

M

main(String[]) - Static method in class net.sf.appstatus.demo.batch.BatchSample
Sample batch.
message(String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
message(String) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Send a message during the task execution.
message(String) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Send a message during the task execution.
messageBundle(String, Locale) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
Uses a message bundle to look for strings.

N

name - Variable in class net.sf.appstatus.services.Service
 
nestedCall() - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Report that another service was called in order to perform original action
nestedCall() - Method in class net.sf.appstatus.services.ServiceCall
 
net.sf.appstatus.batch - package net.sf.appstatus.batch
 
net.sf.appstatus.batch.jdbc - package net.sf.appstatus.batch.jdbc
 
net.sf.appstatus.core - package net.sf.appstatus.core
 
net.sf.appstatus.core.batch - package net.sf.appstatus.core.batch
 
net.sf.appstatus.core.check - package net.sf.appstatus.core.check
 
net.sf.appstatus.core.check.impl - package net.sf.appstatus.core.check.impl
 
net.sf.appstatus.core.loggers - package net.sf.appstatus.core.loggers
 
net.sf.appstatus.core.loggers.impl - package net.sf.appstatus.core.loggers.impl
 
net.sf.appstatus.core.property - package net.sf.appstatus.core.property
 
net.sf.appstatus.core.property.impl - package net.sf.appstatus.core.property.impl
 
net.sf.appstatus.core.services - package net.sf.appstatus.core.services
 
net.sf.appstatus.demo.batch - package net.sf.appstatus.demo.batch
 
net.sf.appstatus.demo.check - package net.sf.appstatus.demo.check
 
net.sf.appstatus.demo.pages - package net.sf.appstatus.demo.pages
 
net.sf.appstatus.demo.property - package net.sf.appstatus.demo.property
 
net.sf.appstatus.jmx - package net.sf.appstatus.jmx
 
net.sf.appstatus.services - package net.sf.appstatus.services
 
net.sf.appstatus.support.aop - package net.sf.appstatus.support.aop
 
net.sf.appstatus.support.spring - package net.sf.appstatus.support.spring
 
net.sf.appstatus.support.spring.cache - package net.sf.appstatus.support.spring.cache
 
net.sf.appstatus.web - package net.sf.appstatus.web
 
net.sf.appstatus.web.pages - package net.sf.appstatus.web.pages
 
newInstance(int) - Method in class net.sf.appstatus.batch.InProcessBatchProgressMonitor
 
newInstance(int) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
newInstance(int) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 

O

OK - Static variable in class net.sf.appstatus.core.check.AbstractCheck
 
OK - Static variable in interface net.sf.appstatus.core.check.ICheckResult
 
onBatchEnd() - Method in class net.sf.appstatus.batch.InProcessBatchProgressMonitor
 
onBatchEnd() - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
onBatchEnd() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 

P

parameters - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
parent - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
put(Object, Object) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 
putIfAbsent(Object, Object) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheAdapter
 

R

RadiatorPage - Class in net.sf.appstatus.web.pages
This is a radiator page.
RadiatorPage() - Constructor for class net.sf.appstatus.web.pages.RadiatorPage
 
reject(String, String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
reject(String[], String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
reject(String[], String, Throwable) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
reject(String, String, Throwable) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
reject(String, String) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Reject one item during the task processing.
reject(String, String, Throwable) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
* Reject one item during the task processing.
reject(String[], String) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Reject a set of items during the task processing.
reject(String[], String, Throwable) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Reject a set of items during the task processing.
reject(String, String) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Reject one item during the task processing.
reject(String, String, Throwable) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
* Reject one item during the task processing.
reject(String[], String) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Reject a set of items during the task processing.
reject(String[], String, Throwable) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Reject a set of items during the task processing.
rejectedItems - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
REMOVE_OLD - Static variable in interface net.sf.appstatus.core.batch.IBatchManager
Removes batches older than 6 months (default), or older than value specified in configuration.
REMOVE_SUCCESS - Static variable in interface net.sf.appstatus.core.batch.IBatchManager
Removes all jobs with no error or rejects.
removeAllBatches(int) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
removeAllBatches(int) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
Removes all jobs matching the scope value.
removeAllBatches(int) - Method in interface net.sf.appstatus.core.batch.IBatchManager
Removes all jobs matching the scope value.
removeBatch(String) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
removeBatch(String) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
removeBatch(String) - Method in interface net.sf.appstatus.core.batch.IBatchManager
Removes a specific job.
resolutionSteps(String) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 
resolutionSteps(String, Object...) - Method in class net.sf.appstatus.core.check.CheckResultBuilder
 
Resources - Class in net.sf.appstatus.web.pages
 
Resources() - Constructor for class net.sf.appstatus.web.pages.Resources
 
Resources.ResourceDefinition - Class in net.sf.appstatus.web.pages
 
Resources.ResourceDefinition(String, String) - Constructor for class net.sf.appstatus.web.pages.Resources.ResourceDefinition
 
result() - Method in class net.sf.appstatus.core.check.AbstractCheck
Create a generic result. name and group are NOT set and it's up to the caller to call CheckResultBuilder.from(ICheck)
result(ICheck) - Method in class net.sf.appstatus.core.check.AbstractCheck
Create a generic result.
run() - Method in class net.sf.appstatus.demo.batch.BatchSample
 
run() - Method in class net.sf.appstatus.demo.batch.BatchSample2
 
running - Variable in class net.sf.appstatus.services.Service
 

S

save(BdBatch) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
Service - Class in net.sf.appstatus.services
 
Service(int) - Constructor for class net.sf.appstatus.services.Service
 
ServiceCall - Class in net.sf.appstatus.services
 
ServiceCall(Service, boolean, boolean) - Constructor for class net.sf.appstatus.services.ServiceCall
 
ServiceMonitorLocator - Class in net.sf.appstatus.core.services
This locator allows to retrieve the current ServiceMonitor.
ServiceMonitorLocator() - Constructor for class net.sf.appstatus.core.services.ServiceMonitorLocator
 
ServiceSample - Class in net.sf.appstatus.demo.batch
Sample service with caching using spring-cache.
ServiceSample() - Constructor for class net.sf.appstatus.demo.batch.ServiceSample
 
ServicesFailureCheck - Class in net.sf.appstatus.core.check.impl
 
ServicesFailureCheck() - Constructor for class net.sf.appstatus.core.check.impl.ServicesFailureCheck
 
ServicesPage - Class in net.sf.appstatus.web.pages
 
ServicesPage() - Constructor for class net.sf.appstatus.web.pages.ServicesPage
 
ServicesPerformanceCheck - Class in net.sf.appstatus.core.check.impl
 
ServicesPerformanceCheck() - Constructor for class net.sf.appstatus.core.check.impl.ServicesPerformanceCheck
 
setActivationCallback(IAppStatusActivationCallback) - Method in class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
 
setAllowIp(String) - Method in class net.sf.appstatus.web.StatusWebHandler
Restrict access to a single IP.
setApplicationContext(ApplicationContext) - Method in class net.sf.appstatus.jmx.StatusJmx
 
setApplicationContext(ApplicationContext) - Method in class net.sf.appstatus.support.spring.SpringObjectInstantiationListener
 
setApplicationName(String) - Method in class net.sf.appstatus.web.StatusWebHandler
 
setAppStatus(AppStatus) - Method in interface net.sf.appstatus.core.check.IAppStatusAware
 
setAppStatus(AppStatus) - Method in class net.sf.appstatus.core.check.impl.ServicesFailureCheck
 
setAppStatus(AppStatus) - Method in class net.sf.appstatus.core.check.impl.ServicesPerformanceCheck
 
setAppstatus(AppStatus) - Method in class net.sf.appstatus.demo.batch.BatchSample2
 
setAppStatus(AppStatus) - Method in class net.sf.appstatus.web.StatusWebHandler
Set the AppStatus object to use in the web interface.
setBatchDao(BatchDao) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
setBatchManager(IBatchManager) - Method in class net.sf.appstatus.core.AppStatus
 
setBatchScheduleManager(IBatchScheduleManager) - Method in class net.sf.appstatus.core.AppStatus
 
setCacheManager(CacheManager) - Method in class net.sf.appstatus.support.spring.cache.AppStatusCacheManager
 
setCheckers(List<ICheck>) - Method in class net.sf.appstatus.core.AppStatus
 
setCode(int) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
setConfiguration(Properties) - Method in class net.sf.appstatus.batch.InProcessBatchManager
 
setConfiguration(Properties) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchManager
 
setConfiguration(Properties) - Method in class net.sf.appstatus.core.AppStatus
 
setConfiguration(Properties) - Method in interface net.sf.appstatus.core.batch.IBatchManager
Inject configuration for service manager.
setConfiguration(Properties) - Method in class net.sf.appstatus.core.check.AbstractCheck
 
setConfiguration(Properties) - Method in interface net.sf.appstatus.core.check.IConfigurationAware
 
setConfiguration(Properties) - Method in class net.sf.appstatus.core.check.impl.JvmCheck
 
setConfiguration(Properties) - Method in class net.sf.appstatus.core.check.impl.ServicesFailureCheck
 
setConfiguration(Properties) - Method in class net.sf.appstatus.core.check.impl.ServicesPerformanceCheck
 
setConfiguration(Properties) - Method in interface net.sf.appstatus.core.loggers.ILoggersManager
 
setConfiguration(Properties) - Method in class net.sf.appstatus.core.loggers.impl.Log4jLoggersManager
 
setConfiguration(Properties) - Method in class net.sf.appstatus.core.loggers.impl.LogbackLoggersManager
 
setConfiguration(Properties) - Method in interface net.sf.appstatus.core.services.IServiceManager
Inject configuration for service manager.
setConfiguration(Properties) - Method in class net.sf.appstatus.services.InProcessServiceManager
Inject configuration for service manager.
setCssLocation(String) - Method in class net.sf.appstatus.web.StatusWebHandler
Set the location of the css to use.
setCurrentItem(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setCurrentItem(Object) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
setCurrentItem(Object) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Set the current item which is being processed.
setCurrentItem(Object) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Set the current item which is being processed.
setCurrentTask(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setDescription(String) - Method in interface net.sf.appstatus.core.check.ICheckResult
 
setDescription(String) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
setEndDate(Date) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setFatal(boolean) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
setGroup(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setGroup(String) - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
setGroup(String) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
setGroup(String) - Method in class net.sf.appstatus.services.Service
 
setItemCount(long) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setJdbcTemplate(JdbcTemplate) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
setLastExecution(Date) - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
setLastExecution(Date) - Method in interface net.sf.appstatus.core.batch.IBatchConfiguration
 
setLastMessage(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setLastUpdate(Date) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setLevel(String) - Method in class net.sf.appstatus.core.loggers.LoggerConfig
 
setLogFormat(String) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
setLogFormat(String) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Set the log message format for this monitor instance, based on : http://commons.apache.org/lang/api-release/org/apache/commons/lang3/text/ StrSubstitutor.html Example : ${correlationId}|${group}|${name}|${responseTime}|${cache}|${status}|${statusMessage} Available variables : group name responseTime cache failure failureReason failureException error errorMessage correlationId status : SUCCESS/FAILURE/ERROR statusMessage : failure or error message Any additional context values
setLogger(Logger) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
setLogger(Logger) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Set the logger to use for the current batch.
setLogger(Logger) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
setLogger(Logger) - Method in interface net.sf.appstatus.core.services.IServiceMonitor
Set the logger to use for this service call.
setLogger(String) - Method in class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
Set the logger to use with this interceptor.
setMaintenance(boolean) - Method in class net.sf.appstatus.core.AppStatus
 
setMaintenanceFile(String) - Method in class net.sf.appstatus.core.AppStatus
 
setManager(JdbcBatchManager) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
 
setMessageFormat(String) - Method in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
setName(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setName(String) - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
setName(String) - Method in class net.sf.appstatus.core.loggers.LoggerConfig
 
setName(String) - Method in class net.sf.appstatus.services.Service
 
setObjectInstanciationListener(IObjectInstantiationListener) - Method in class net.sf.appstatus.core.AppStatus
 
setObjectInstanciationListener(IObjectInstantiationListener) - Method in class net.sf.appstatus.core.AppStatusServices
Deprecated.
 
setPages(Map<String, IPage>) - Method in class net.sf.appstatus.web.StatusWebHandler
Set the available pages in the web interface.
setPostServiceCallback(IPostServiceCallback) - Method in class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
Adding a callback disables automatic failure management.
setPreServiceCallback(IPreServiceCallback) - Method in class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
 
setProbeName(String) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
setProgress(Float) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setProgressMonitor(IBatchProgressMonitor) - Method in class net.sf.appstatus.batch.Batch
 
setProgressMonitor(IBatchProgressMonitor) - Method in class net.sf.appstatus.batch.jdbc.Batch
 
setProgressMonitor(IBatchProgressMonitor) - Method in interface net.sf.appstatus.core.batch.IBatch
This method is not intended to be used directly.
setPropertyProviders(List<IPropertyProvider>) - Method in class net.sf.appstatus.core.AppStatus
 
setReject(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setResolutionSteps(String) - Method in interface net.sf.appstatus.core.check.ICheckResult
 
setResolutionSteps(String) - Method in class net.sf.appstatus.core.check.impl.StatusResultImpl
 
setSchedule(String) - Method in class net.sf.appstatus.core.batch.BatchConfiguration
 
setService(ServiceSample) - Method in class net.sf.appstatus.demo.batch.BatchSample2
 
setServiceManager(IServiceManager) - Method in class net.sf.appstatus.core.AppStatus
 
setServiceManager(IServiceManager) - Method in class net.sf.appstatus.support.aop.AppStatusServiceInterceptor
Set the AppStatus service manager to use for this interceptor.
setServletContext(ServletContext) - Method in interface net.sf.appstatus.core.IServletContextAware
 
setServletContext(ServletContext) - Method in class net.sf.appstatus.core.property.impl.WarMavenVersionProvider
setServletContext(ServletContext) - Method in class net.sf.appstatus.jmx.StatusJmx
 
setServletContextProvider(IServletContextProvider) - Method in class net.sf.appstatus.core.AppStatus
 
setServletContextProvider(IServletContextProvider) - Method in class net.sf.appstatus.core.AppStatusServices
Deprecated.
 
setStartDate(Date) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setStatus(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setSuccess(Boolean) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setTableName(String) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
setTotalWork(int) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
setup(IServiceMonitor, MethodInvocation) - Method in interface net.sf.appstatus.support.aop.IPreServiceCallback
This method allows to setup the AppStatus monitor according to the invocation.
setup(HttpServletResponse, String) - Method in class net.sf.appstatus.web.pages.AbstractPage
 
setUuid(String) - Method in class net.sf.appstatus.batch.jdbc.BdBatch
 
setWritingDelay(long) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Set the writing delay.
setZombieInterval(int) - Method in class net.sf.appstatus.batch.Batch
 
setZombieInterval(int) - Method in class net.sf.appstatus.batch.jdbc.Batch
 
SpringBeanInstantiationListener - Class in net.sf.appstatus.jmx
Simple Spring bean instance finder.
SpringBeanInstantiationListener(ApplicationContext) - Constructor for class net.sf.appstatus.jmx.SpringBeanInstantiationListener
Constructor.
SpringObjectInstantiationListener - Class in net.sf.appstatus.support.spring
Spring-aware instantiation listener for web applications.
SpringObjectInstantiationListener() - Constructor for class net.sf.appstatus.support.spring.SpringObjectInstantiationListener
Constructor.
SpringObjectInstantiationListener - Class in net.sf.appstatus.web
Spring-aware instantiation listener for web applications.
SpringObjectInstantiationListener(ServletContext) - Constructor for class net.sf.appstatus.web.SpringObjectInstantiationListener
Constructor.
startTime - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
startTime - Variable in class net.sf.appstatus.core.services.AbstractLoggingServiceMonitor
 
STATUS_ERROR - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_FAILURE - Static variable in interface net.sf.appstatus.core.batch.IBatch
 
STATUS_JOB - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_JOB_ERROR - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_JOB_WARNING - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_OK - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_PROP - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_RUNNING - Static variable in interface net.sf.appstatus.core.batch.IBatch
 
STATUS_SUCCESS - Static variable in interface net.sf.appstatus.core.batch.IBatch
 
STATUS_WARN - Static variable in class net.sf.appstatus.web.pages.Resources
 
STATUS_ZOMBIE - Static variable in interface net.sf.appstatus.core.batch.IBatch
 
StatusJmx - Class in net.sf.appstatus.jmx
JMX exposure of StatusChecker beans.
StatusJmx() - Constructor for class net.sf.appstatus.jmx.StatusJmx
 
StatusPage - Class in net.sf.appstatus.web.pages
 
StatusPage() - Constructor for class net.sf.appstatus.web.pages.StatusPage
 
StatusResultImpl - Class in net.sf.appstatus.core.check.impl
Default Status check result.
StatusResultImpl() - Constructor for class net.sf.appstatus.core.check.impl.StatusResultImpl
 
StatusServlet - Class in net.sf.appstatus.web
 
StatusServlet() - Constructor for class net.sf.appstatus.web.StatusServlet
 
StatusWebHandler - Class in net.sf.appstatus.web
Handle the Web UI of AppStatus.
StatusWebHandler() - Constructor for class net.sf.appstatus.web.StatusWebHandler
 
successItems - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 

T

tableName - Variable in class net.sf.appstatus.batch.jdbc.BatchDao
 
taskName - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Name of the task, set with beginTask Init to null : cannot be set multiple times. beginTask will fail if taskName is not null.
totalWork - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
touch() - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Updated 'lastUpdate' value.

U

UNKNOW - Static variable in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Unknown amount of work.
update(BdBatch) - Method in class net.sf.appstatus.batch.jdbc.BatchDao
 
update(LoggerConfig) - Method in interface net.sf.appstatus.core.loggers.ILoggersManager
 
update(LoggerConfig) - Method in class net.sf.appstatus.core.loggers.impl.Log4jLoggersManager
 
update(LoggerConfig) - Method in class net.sf.appstatus.core.loggers.impl.LogbackLoggersManager
 

W

WarMavenVersionProvider - Class in net.sf.appstatus.core.property.impl
Retrieve POM informations for WAR archive.
WarMavenVersionProvider() - Constructor for class net.sf.appstatus.core.property.impl.WarMavenVersionProvider
 
WARN - Static variable in class net.sf.appstatus.core.check.AbstractCheck
 
worked(int) - Method in class net.sf.appstatus.batch.InProcessBatchProgressMonitor
Notify the processing of items.
worked(int) - Method in class net.sf.appstatus.batch.jdbc.JdbcBatchProgressMonitor
Notify the processing of items.
worked - Variable in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
 
worked(int) - Method in class net.sf.appstatus.core.batch.AbstractBatchProgressMonitor
Notify the processing of items.
worked(int) - Method in interface net.sf.appstatus.core.batch.IBatchProgressMonitor
Notify the processing of items.
A B C D E F G H I J L M N O P R S T U W 

Copyright © 2010–2016. All rights reserved.