When the uptime for the underlying domain is greater than the attachTime, then the value is 240 seconds plus the smoothing interval. The 'attachTime' determines the delay before reconnected but un-renotified WAS_ACTIVE Notifs are auto-cleared.
Default = 6000.
There are also two hard coded parameters to be considered:
- attachFlappingTime (1200)
- attachTimeShort (900 )
Depending on what type of disconnect occurs, one or the other of these parameters will be added to your configured attach time plus the smoothing interval.
When the uptime for the underlying servers is less than the attachTime, the value is attachTime minus uptime plus the smoothing interval. Therefore, about the best you can achieve by the configuration above is a WAS_ACTIVE auto-clear time of about 20+ minutes.
Since the move to xml config, attachTime is defined as below in the ics-config.dtd ( /conf/ics/ics-config.dtd )
<!ELEMENT domaintype (description?, hook?, domainname*,
update?)>
<!ATTLIST domaintype
name CDATA #REQUIRED
dxaConfFile CDATA #REQUIRED
MinimumCertainty CDATA #REQUIRED
SmoothingInterval CDATA #REQUIRED
attachTime CDATA #IMPLIED
detachTime CDATA #IMPLIED
timeOut CDATA #IMPLIED
timeOutBE CDATA #IMPLIED
timeOutFE CDATA #IMPLIED
enable (TRUE " FALSE " true " false " True
" False) "FALSE"
timestamp CDATA "0"
>
These values cannot be edited here, but can be added to the <domainType> section of the domain type xml file of interest. (see Example below). You can confirm a change to this configuration, by checking the 'attachTime' attribute of the InChargeDomain (SAM) of interest in the Topology Browser module.
Example of the syntax of a change to ics-default.xml
<ics_config version="2">
<domainconfig>
<domaintype
name="INCHARGE-AM-SUITE"
dxaConfFile="dxa-conn.conf"
MinimumCertainty="0.01"
SmoothingInterval="65"
attachTime="XXXX"
detachTime="XXXX">
<description>Type for INCHARGE-AM-SUITE</description>
<hook enable="False">ics/dxa-sample-hook.asl</hook>
<domainname>INCHARGE-AM</domainname>
<domainname>NCM</domainname>
<domainname>INCHARGE-AM2</domainname>
</domaintype>