Added documentation
This commit is contained in:
parent
a25d58b2ee
commit
3d27ebcb34
1 changed files with 13 additions and 3 deletions
|
@ -1,5 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief This class contain functions for the database management
|
||||
*
|
||||
*/
|
||||
class dbm {
|
||||
/**
|
||||
* @brief Return a list of database processes
|
||||
*
|
||||
* @return array
|
||||
* 'list' => List of processes, separated in their different states
|
||||
* 'amount' => Number of concurrent database processes
|
||||
*/
|
||||
public static function processlist() {
|
||||
$r = q("SHOW PROCESSLIST");
|
||||
$s = array();
|
||||
|
@ -8,14 +19,13 @@ class dbm {
|
|||
$states = array();
|
||||
foreach ($r AS $process) {
|
||||
$state = trim($process["State"]);
|
||||
|
||||
// Filter out all idle processes
|
||||
if (!in_array($state, array("", "init", "statistics"))) {
|
||||
++$states[$state];
|
||||
++$processes;
|
||||
}
|
||||
}
|
||||
// query end
|
||||
// Sending data
|
||||
// updating
|
||||
|
||||
$statelist = "";
|
||||
foreach ($states AS $state => $usage) {
|
||||
|
|
Loading…
Reference in a new issue