~ubuntu-branches/debian/lenny/smokeping/lenny

« back to all changes in this revision

Viewing changes to doc/matchers/median.pm.html

  • Committer: Bazaar Package Importer
  • Author(s): Niko Tyni
  • Date: 2006-10-26 21:45:56 UTC
  • mfrom: (1.2.2 upstream) (2.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20061026214556-5jnpiesx4vdijmu6
* debian/patches/15_clean_makefile.dpatch:
  + remove unneeded and potentially unsecure include paths.
* debian/patches: selected patches from the upstream SVN repository
  + 40_password.dpatch: skip reading the password file when running as a CGI.
  + 50_ldap.dpatch: Make the 'scope' option in the LDAP probe actually work.
  + 60_fping.dpatch:
    * Support the '-S' (set source address, see #198486) fping option.
    * Don't try to execute fping when running as a CGI.
  + 70_syslog.dpatch: Don't die silently if syslogd is unavailable.
    (Closes: #395056)
* Remove all the autogenerated documentation at clean time, to properly
  undo the effects of the 'build' target.
* Install example configuration files for documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
 
<html xmlns="http://www.w3.org/1999/xhtml">
3
 
<head>
4
 
<title>matchers/median.pm</title>
5
 
<link rev="made" href="mailto:dws@ee.ethz.ch" />
6
 
</head>
7
 
 
8
 
<body style="background-color: white">
9
 
 
10
 
<p><a name="__index__"></a></p>
11
 
<!-- INDEX BEGIN -->
12
 
<!--
13
 
 
14
 
<ul>
15
 
 
16
 
        <li><a href="#name">NAME</a></li>
17
 
        <li><a href="#overview">OVERVIEW</a></li>
18
 
        <li><a href="#description">DESCRIPTION</a></li>
19
 
        <li><a href="#copyright">COPYRIGHT</a></li>
20
 
        <li><a href="#license">LICENSE</a></li>
21
 
        <li><a href="#author">AUTHOR</a></li>
22
 
</ul>
23
 
-->
24
 
<!-- INDEX END -->
25
 
 
26
 
<p>
27
 
</p>
28
 
<h1><a name="name">NAME</a></h1>
29
 
<p>matchers::median - Find persistant change in latency</p>
30
 
<p>
31
 
</p>
32
 
<hr />
33
 
<h1><a name="overview">OVERVIEW</a></h1>
34
 
<p>The idea behind this matcher is to find sustained changes in latency.</p>
35
 
<p>The median matcher takes a number of past median latencies. It splits the latencies into
36
 
two groups (old and new) and again finds the median for each groups. If the
37
 
difference between the two medians is bigger than a certain value, it will
38
 
give a match.</p>
39
 
<p>
40
 
</p>
41
 
<hr />
42
 
<h1><a name="description">DESCRIPTION</a></h1>
43
 
<p>Call the matcher with the following sequence:</p>
44
 
<pre>
45
 
 type = matcher
46
 
 pattern =  median(old=&gt;x,new=&gt;y,diff=&gt;z)</pre>
47
 
<p>This will create a matcher which consumes x+y latency-datapoints, builds the
48
 
two medians and the matches if the difference between the median latency is
49
 
larger than z seconds.</p>
50
 
<p>
51
 
</p>
52
 
<hr />
53
 
<h1><a name="copyright">COPYRIGHT</a></h1>
54
 
<p>Copyright (c) 2004 by OETIKER+PARTNER AG. All rights reserved.</p>
55
 
<p>
56
 
</p>
57
 
<hr />
58
 
<h1><a name="license">LICENSE</a></h1>
59
 
<p>This program is free software; you can redistribute it and/or modify
60
 
it under the terms of the GNU General Public License as published by
61
 
the Free Software Foundation; either version 2 of the License, or
62
 
(at your option) any later version.</p>
63
 
<p>This program is distributed in the hope that it will be useful,
64
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
65
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
66
 
GNU General Public License for more details.</p>
67
 
<p>You should have received a copy of the GNU General Public License
68
 
along with this program; if not, write to the Free Software
69
 
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.</p>
70
 
<p>
71
 
</p>
72
 
<hr />
73
 
<h1><a name="author">AUTHOR</a></h1>
74
 
<p>Tobias Oetiker &lt;<a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a>&gt;</p>
75
 
 
76
 
</body>
77
 
 
78
 
</html>