$Stat: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (remove Sys Man guide) |
||
Line 9: | Line 9: | ||
<p>Where:</p> | <p>Where:</p> | ||
<ul> | <ul> | ||
<li><var class="term">statistic</var> specifies the name of the user statistic to be returned | <li><var class="term">statistic</var> specifies the name of the [[Using system statistics#User statistics entries (Type 9)|user statistic]] to be returned. </li> | ||
<li>user specifies the return of a user final or partial statistic. | <li><var class="term">user</var> specifies the return of a user final or partial statistic. </li> | ||
</li> | |||
</ul> | </ul> | ||
<p class="code"> | ==Example== | ||
<p class="code"> ... | |||
%X = $STAT('CPU','USER') | %X = $STAT('CPU','USER') | ||
... | |||
</p> | </p> | ||
[[Category:SOUL $functions]] | [[Category:SOUL $functions]] |
Revision as of 18:58, 3 November 2014
The $Stat function returns the current value of any user final (LOGOUT) or partial statistic. This function is useful for determining which resources are used by various portions of a request.
Syntax
The format of the $Stat function is:
$Stat(statistic,'user')
Where:
- statistic specifies the name of the user statistic to be returned.
- user specifies the return of a user final or partial statistic.
Example
... %X = $STAT('CPU','USER') ...