/[monit]/monit/web/next.html
ViewVC logotype

Diff of /monit/web/next.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.33 by hauk, Wed Sep 24 23:56:59 2003 UTC revision 1.34 by hauk, Thu Sep 25 10:46:15 2003 UTC
# Line 41  implementation, the current progress (th Line 41  implementation, the current progress (th
41  green) and how we judge the importance of this feature (high, medium,  green) and how we judge the importance of this feature (high, medium,
42  low).  low).
43  <p>  <p>
44  Items marked with a <i>low</i> importance will probably not make it  Items marked with a <i>low</i> importance will not make it into the
45  into the release. If you would like to change anything or add stuff to  next release, but maybe in a future release. If you would like to
46  the list join the <A HREF=  change anything or add stuff to this feature list join the <A HREF=
47  "http://mail.freesoftware.fsf.org/mailman/listinfo/monit-general">mailing  "http://mail.freesoftware.fsf.org/mailman/listinfo/monit-general">monit
48  lists</A> and let us know.  mailing lists</A> and let us know.
49    
50  <br>  <br>
51  <p>  <p>
52    
53  <h3><u>Feature list:</u></h3><p><br>  <h3><u>Feature list:</u></h3><p><br>
54    
55    <!--  -------------------------------------------------------------------- -->
56    <!--  ------------------------ HIGH PRIORITIES --------------------------- -->
57    <!--  -------------------------------------------------------------------- -->
58    
59  <div style='padding-left:10px; width:100%; border:1px solid;'>  <div style='padding-left:10px; width:100%; border:1px solid;'>
60    <h3>MTA failover support</h3>
61    
62  <b>ICMP echo test for remote host monitoring</b><p>  Add the posibility to use more than one SMTP server for alert messages
63  Possible syntax:  sent by monit. If connection to the primary SMTP server should fail,
64    monit should try a secondary server and so on.
65    <p>
66    Syntax propsal:
67  <pre>  <pre>
68  if failed icmp type echo with timeout 5 seconds then alert  set mailserver, primary, secondary, foo.bar, bar.baz
69  </pre>  </pre>
70  <br>  <p>
71    Also updated the SMTP protocol support in monit to handle error
72    messages from the SMTP server (more proper).
73    <p>
74  <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>  <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
75  <tr>  <tr>
76  <td width=50%>Responsible:</td><td width=50%>Martin</td>  <td width=50%>Responsible:</td><td width=50%>hauk</td>
77  </tr>  </tr>
78  <tr>  <tr>
79  <td width=50%>Progress:</td>  <td width=50%>Progress:</td>
80  <td width=50% bgcolor="#0033cc" align=center><b><font color=#ffffff>20%</font></b></td>  <td width=50% bgcolor="blue" align=center><b>
81    <font color=#ffffff>0%</font></b></td>
82  </tr>  </tr>
83  <tr>  <tr>
84  <td width=50%>Importance:</td><td width=50%>MEDIUM</td>  <td width=50%>Importance:</td><td width=50%>HIGH</td>
85  </tr>  </tr>
86  </table>  </table>
87  </div>  </div>
88    
89  <p>  <p>
90    
91    <!--  -------------------------------------------------------------------- -->
92    <!--  ---------------------- MEDIUM PRIORITIES --------------------------- -->
93    <!--  -------------------------------------------------------------------- -->
94    
95  <div style='padding-left:10px; width:100%; border:1px solid;'>  <div style='padding-left:10px; width:100%; border:1px solid;'>
96  <b>Web and console output simplification (don't display "not defined"  <h3>Web and console output simplification (don't display "not defined"
97  options)</b><p>  options)</h3>
98    
99  <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>  <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
100  <tr>  <tr>
# Line 98  options)</b><p> Line 113  options)</b><p>
113  <p>  <p>
114    
115  <div style='padding-left:10px; width:100%; border:1px solid;'>  <div style='padding-left:10px; width:100%; border:1px solid;'>
116  <b>HTTP request returned data checksum</b><p>  <h3>ICMP echo test for remote host monitoring</h3>
117    Possible syntax:
118    <pre>
119    if failed icmp type echo with timeout 5 seconds then alert
120    </pre>
121    <br>
122    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
123    <tr>
124    <td width=50%>Responsible:</td><td width=50%>Martin</td>
125    </tr>
126    <tr>
127    <td width=50%>Progress:</td>
128    <td width=50% bgcolor="#0033cc" align=center><b><font color=#ffffff>20%</font></b></td>
129    </tr>
130    <tr>
131    <td width=50%>Importance:</td><td width=50%>MEDIUM</td>
132    </tr>
133    </table>
134    </div>
135    
136    <p>
137    
138    <div style='padding-left:10px; width:100%; border:1px solid;'>
139    <h3>HTTP request returns data checksum</h3>
140  It makes sense now to implement this test, because when monit was  It makes sense now to implement this test, because when monit was
141  designed for local tests only, it was possible to checksum the page or  designed for local tests only, it was possible to checksum the page or
142  script directly in the filesystem. With the new remote host test it  script directly in the filesystem. With the new remote host test it
# Line 112  if failed host my.web.org port 80 protoc Line 150  if failed host my.web.org port 80 protoc
150  then alert  then alert
151  </pre>  </pre>
152    
153  This will require implementing chunked transfer encoding, as discussed  Monit should not support chunked transfer encoding and only support
154  in the past.<p>  checksum for documents where the Content-Length header is set by the
155    HTTP server. This should cover all static content served by the
156    server. The reason is that monit must not use time to download large
157    documents from the server. There will exist a document size limit on
158    XXX Kb for documents monit will compute a checksum for.<p>
159    
160  <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>  <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
161  <tr>  <tr>
162  <td width=50%>Responsible:</td><td width=50%>?</td>  <td width=50%>Responsible:</td><td width=50%>hauk</td>
163  </tr>  </tr>
164  <tr>  <tr>
165  <td width=50%>Progress:</td>  <td width=50%>Progress:</td>
# Line 129  in the past.<p> Line 171  in the past.<p>
171  </table>  </table>
172  </div>  </div>
173    
174    <p>
175    
176    <div style='padding-left:10px; width:100%; border:1px solid;'>
177    <h3>URL request for protocol tests (like ldap, ftp, etc.)</h3>
178    Add document request to relevant protocol tests. Currently only the
179    http protocol test support a request option.
180    <p>
181    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
182    <tr>
183    <td width=50%>Responsible:</td><td width=50%>?</td>
184    </tr>
185    <tr>
186    <td width=50%>Progress:</td>
187    <td width=50% bgcolor="blue" align=center><b>
188    <font color=#ffffff>0%</font></b></td>
189    </tr>
190    <tr>
191    <td width=50%>Importance:</td><td width=50%>MEDIUM</td>
192    </tr>
193    </table>
194    </div>
195    
196    <p>
197    
198    <!--  -------------------------------------------------------------------- -->
199    <!--  ------------------------- LOW PRIORITIES --------------------------- -->
200    <!--  -------------------------------------------------------------------- -->
201    
202    <div style='padding-left:10px; width:100%; border:1px solid;'>
203    <h3>Interfaces monitoring (network, serial, ...)</h3>
204    <!-- ADD DESCRIPTION HERE -->
205    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
206    <tr>
207    <td width=50%>Responsible:</td><td width=50%>?</td>
208    </tr>
209    <tr>
210    <td width=50%>Progress:</td>
211    <td width=50% bgcolor="blue" align=center><b>
212    <font color=#ffffff>0%</font></b></td>
213    </tr>
214    <tr>
215    <td width=50%>Importance:</td><td width=50%>LOW</td>
216    </tr>
217    </table>
218    </div>
219    
220    <p>
221    
222    <div style='padding-left:10px; width:100%; border:1px solid;'>
223    <h3>Device load average tests</h3>
224    <!-- ADD DESCRIPTION HERE -->
225    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
226    <tr>
227    <td width=50%>Responsible:</td><td width=50%>Martin</td>
228    </tr>
229    <tr>
230    <td width=50%>Progress:</td>
231    <td width=50% bgcolor="blue" align=center><b>
232    <font color=#ffffff>0%</font></b></td>
233    </tr>
234    <tr>
235    <td width=50%>Importance:</td><td width=50%>LOW</td>
236    </tr>
237    </table>
238    </div>
239    
240    <p>
241    
242    <div style='padding-left:10px; width:100%; border:1px solid;'>
243    <h3>Device related caches test (inode, dnlc, ...)</h3>
244    <!-- ADD DESCRIPTION HERE -->
245    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
246    <tr>
247    <td width=50%>Responsible:</td><td width=50%>Martin</td>
248    </tr>
249    <tr>
250    <td width=50%>Progress:</td>
251    <td width=50% bgcolor="blue" align=center><b>
252    <font color=#ffffff>0%</font></b></td>
253    </tr>
254    <tr>
255    <td width=50%>Importance:</td><td width=50%>LOW</td>
256    </tr>
257    </table>
258    </div>
259    
260    <p>
261    
262    <div style='padding-left:10px; width:100%; border:1px solid;'>
263    <h3>Interfaces monitoring (network, serial, ...)</h3>
264    <!-- ADD DESCRIPTION HERE -->
265    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
266    <tr>
267    <td width=50%>Responsible:</td><td width=50%>?</td>
268    </tr>
269    <tr>
270    <td width=50%>Progress:</td>
271    <td width=50% bgcolor="blue" align=center><b>
272    <font color=#ffffff>0%</font></b></td>
273    </tr>
274    <tr>
275    <td width=50%>Importance:</td><td width=50%>LOW</td>
276    </tr>
277    </table>
278    </div>
279    
280    <p>
281    
282    <div style='padding-left:10px; width:100%; border:1px solid;'>
283    <h3>IPv6 support</h3>
284    Make monit speak Ipv6 both for network protocol test and in the
285    built-in web server.
286    <p>
287    <table style='width: 30%; border-top:1px solid;border-right:1px solid;'>
288    <tr>
289    <td width=50%>Responsible:</td><td width=50%>Martin</td>
290    </tr>
291    <tr>
292    <td width=50%>Progress:</td>
293    <td width=50% bgcolor="blue" align=center><b>
294    <font color=#ffffff>0%</font></b></td>
295    </tr>
296    <tr>
297    <td width=50%>Importance:</td><td width=50%>LOW</td>
298    </tr>
299    </table>
300    </div>
301    
302    <p>
303    
304    
305            </td>            </td>
306         </tr>         </tr>

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26