mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:27:28 +00:00
Add some more modules that use mod_watchdog
r1839250 in trunk + remove some trailing spaces to synch with trunk + add the optional [s] in WatchdogInterval syntax git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1839254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
<modulesynopsis metafile="mod_watchdog.xml.meta">
|
<modulesynopsis metafile="mod_watchdog.xml.meta">
|
||||||
<name>mod_watchdog</name>
|
<name>mod_watchdog</name>
|
||||||
<description>provides infrastructure for other modules to periodically run
|
<description>provides infrastructure for other modules to periodically run
|
||||||
tasks</description>
|
tasks</description>
|
||||||
<status>Base</status>
|
<status>Base</status>
|
||||||
<sourcefile>mod_watchdog.c</sourcefile>
|
<sourcefile>mod_watchdog.c</sourcefile>
|
||||||
@ -30,30 +30,32 @@
|
|||||||
<compatibility>Available in Apache 2.3 and later</compatibility>
|
<compatibility>Available in Apache 2.3 and later</compatibility>
|
||||||
|
|
||||||
<summary>
|
<summary>
|
||||||
<p><module>mod_watchdog</module> defines programmatic hooks for other modules to
|
<p><module>mod_watchdog</module> defines programmatic hooks for other modules to
|
||||||
periodically run tasks. These modules can register handlers for
|
periodically run tasks. These modules can register handlers for
|
||||||
<module>mod_watchdog</module> hooks. Currently, the following modules in the
|
<module>mod_watchdog</module> hooks. Currently, the following modules in the
|
||||||
Apache distribution use this functionality:</p>
|
Apache distribution use this functionality:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><module>mod_heartbeat</module></li>
|
<li><module>mod_heartbeat</module></li>
|
||||||
<li><module>mod_heartmonitor</module></li>
|
<li><module>mod_heartmonitor</module></li>
|
||||||
|
<li><module>mod_md</module></li>
|
||||||
|
<li><module>mod_proxy_hcheck</module></li>
|
||||||
</ul>
|
</ul>
|
||||||
<note type="warning">
|
<note type="warning">
|
||||||
To allow a module to use <module>mod_watchdog</module> functionality,
|
To allow a module to use <module>mod_watchdog</module> functionality,
|
||||||
<module>mod_watchdog</module> itself must be statically linked to the server
|
<module>mod_watchdog</module> itself must be statically linked to the server
|
||||||
core or, if a dynamic module, be loaded before the calling module.
|
core or, if a dynamic module, be loaded before the calling module.
|
||||||
</note>
|
</note>
|
||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
<directivesynopsis>
|
<directivesynopsis>
|
||||||
<name>WatchdogInterval</name>
|
<name>WatchdogInterval</name>
|
||||||
<description>Watchdog interval in seconds</description>
|
<description>Watchdog interval in seconds</description>
|
||||||
<syntax>WatchdogInterval <var>number-of-seconds</var></syntax>
|
<syntax>WatchdogInterval <var>time-interval</var>[s]</syntax>
|
||||||
<default>WatchdogInterval 1</default>
|
<default>WatchdogInterval 1</default>
|
||||||
<contextlist><context>server config</context></contextlist>
|
<contextlist><context>server config</context></contextlist>
|
||||||
|
|
||||||
<usage>
|
<usage>
|
||||||
<p>Sets the interval at which the watchdog_step hook runs. Default is to run every
|
<p>Sets the interval at which the watchdog_step hook runs. Default is to run every
|
||||||
second.</p>
|
second.</p>
|
||||||
</usage>
|
</usage>
|
||||||
</directivesynopsis>
|
</directivesynopsis>
|
||||||
|
Reference in New Issue
Block a user