public void initialize() throws AsynchAEException
{
Statistic statistic = null;
if ( (statistic = getMonitor().getLongNumericStatistic("",Monitor.ProcessCount)) == null )
{
statistic = new LongNumericStatistic(Monitor.ProcessCount);
getMonitor().addStatistic("", statistic);
}
if ( (statistic = getMonitor().getLongNumericStatistic("",Monitor.ProcessErrorCount)) == null )
{
statistic = new LongNumericStatistic(Monitor.ProcessErrorCount);
getMonitor().addStatistic("", statistic);
}
if ( (statistic = getMonitor().getLongNumericStatistic("",Monitor.ProcessErrorRetryCount)) == null )
{
statistic = new LongNumericStatistic(Monitor.ProcessErrorRetryCount);
getMonitor().addStatistic("", statistic);
}
}