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

« back to all changes in this revision

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

  • 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
 
matchers::median(3)         SmokePing         matchers::median(3)
2
 
 
3
 
 
4
 
 
5
 
NNAAMMEE
6
 
       matchers::median - Find persistant change in latency
7
 
 
8
 
OOVVEERRVVIIEEWW
9
 
       The idea behind this matcher is to find sustained changes
10
 
       in latency.
11
 
 
12
 
       The median matcher takes a number of past median laten-
13
 
       cies. It splits the latencies into two groups (old and
14
 
       new) and again finds the median for each groups. If the
15
 
       difference between the two medians is bigger than a cer-
16
 
       tain value, it will give a match.
17
 
 
18
 
DDEESSCCRRIIPPTTIIOONN
19
 
       Call the matcher with the following sequence:
20
 
 
21
 
        type = matcher
22
 
        pattern =  median(old=>x,new=>y,diff=>z)
23
 
 
24
 
       This will create a matcher which consumes x+y latency-dat-
25
 
       apoints, builds the two medians and the matches if the
26
 
       difference between the median latency is larger than z
27
 
       seconds.
28
 
 
29
 
CCOOPPYYRRIIGGHHTT
30
 
       Copyright (c) 2004 by OETIKER+PARTNER AG. All rights
31
 
       reserved.
32
 
 
33
 
LLIICCEENNSSEE
34
 
       This program is free software; you can redistribute it
35
 
       and/or modify it under the terms of the GNU General Public
36
 
       License as published by the Free Software Foundation;
37
 
       either version 2 of the License, or (at your option) any
38
 
       later version.
39
 
 
40
 
       This program is distributed in the hope that it will be
41
 
       useful, but WITHOUT ANY WARRANTY; without even the implied
42
 
       warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
43
 
       PURPOSE.  See the GNU General Public License for more
44
 
       details.
45
 
 
46
 
       You should have received a copy of the GNU General Public
47
 
       License along with this program; if not, write to the Free
48
 
       Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
49
 
       02139, USA.
50
 
 
51
 
AAUUTTHHOORR
52
 
       Tobias Oetiker <tobi@oetiker.ch>
53
 
 
54
 
 
55
 
 
56
 
1.33                        2004-11-07        matchers::median(3)