/usr/share/doc/funkload-doc/html/glossary.html is in funkload-doc 1.17.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Glossary — FunkLoad 1.17.1 documentation</title>
<link rel="stylesheet" href="_static/sphinxdoc.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.17.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="top" title="FunkLoad 1.17.1 documentation" href="index.html" />
</head>
<body role="document">
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="nav-item nav-item-0"><a href="index.html">FunkLoad 1.17.1 documentation</a> »</li>
</ul>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<p class="logo"><a href="index.html">
<img class="logo" src="_static/funkload-logo-small.png" alt="Logo"/>
</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/glossary.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="glossary">
<h1>Glossary<a class="headerlink" href="#glossary" title="Permalink to this headline">ΒΆ</a></h1>
<dl class="glossary docutils">
<dt id="term-cus">CUs</dt>
<dd>Concurrent users or number of concurrent threads executing tests.</dd>
<dt id="term-request">Request</dt>
<dd>A single GET/POST/redirect/xmlrpc request.</dd>
<dt id="term-page">Page</dt>
<dd>A request with redirects and resource links (image, css, js)
for an html page.</dd>
<dt id="term-stps">STPS</dt>
<dd>Successful tests per second.</dd>
<dt id="term-spps">SPPS</dt>
<dd>Successful pages per second.</dd>
<dt id="term-rps">RPS</dt>
<dd>Requests per second, successful or not.</dd>
<dt id="term-maxspps">maxSPPS</dt>
<dd>Maximum SPPS during the cycle.</dd>
<dt id="term-maxrps">maxRPS</dt>
<dd>Maximum RPS during the cycle.</dd>
<dt id="term-min">MIN</dt>
<dd>Minimum response time for a page or request.</dd>
<dt id="term-avg">AVG</dt>
<dd>Average response time for a page or request.</dd>
<dt id="term-max">MAX</dt>
<dd>Maximmum response time for a page or request.</dd>
<dt id="term-p10">P10</dt>
<dd>10th percentile, response time where 10 percent of pages or requests are delivered.</dd>
<dt id="term-med">MED</dt>
<dd>Median or 50th percentile, response time where half of pages or requests are delivered.</dd>
<dt id="term-p90">P90</dt>
<dd>90th percentile, response time where 90 percent of pages or requests are delivered.</dd>
<dt id="term-p95">P95</dt>
<dd>95th percentile, response time where 95 percent of pages or requests are delivered.</dd>
<dt id="term-apdex">Apdex</dt>
<dd><p class="first">Application Performance Index, this is a numerical measure of user satisfaction, it is based on three zones of application responsiveness:</p>
<ul class="simple">
<li>Satisfied: The user is fully productive. This represents the time value (T seconds) below which users are not impeded by application response time.</li>
<li>Tolerating: The user notices performance lagging within responses greater than T, but continues the process.</li>
<li>Frustrated: Performance with a response time greater than 4*T seconds is unacceptable, and users may abandon the process.</li>
</ul>
<p>By default T is set to 1.5s this means that response time between 0 and 1.5s the user is fully productive, between 1.5 and 6s the responsivness is tolerating and above 6s the user is frustrated.</p>
<p>The Apdex score converts many measurements into one number on a uniform scale of 0-to-1 (0 = no users satisfied, 1 = all users satisfied).</p>
<p>To ease interpretation the Apdex score is also represented as a rating:</p>
<ul class="simple">
<li>U for UNACCEPTABLE represented in gray for a score between 0 and 0.5</li>
<li>P for POOR represented in red for a score between 0.5 and 0.7</li>
<li>F for FAIR represented in yellow for a score between 0.7 and 0.85</li>
<li>G for Good represented in green for a score between 0.85 and 0.94</li>
<li>E for Excellent represented in blue for a score between 0.94 and 1</li>
</ul>
<p class="last">Visit <a class="reference external" href="http://www.apdex.org/">http://www.apdex.org/</a> for more information.</p>
</dd>
</dl>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="nav-item nav-item-0"><a href="index.html">FunkLoad 1.17.1 documentation</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2016, Benoit Delbosc.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4.9.
</div>
</body>
</html>
|