ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/graphs/graphs_config.inc.php
(Generate patch)

Comparing projects/cms/source/reports/php/graphs/graphs_config.inc.php (file contents):
Revision 1.3 by tdb, Mon Oct 21 13:02:58 2002 UTC vs.
Revision 1.4 by tdb, Mon Mar 10 21:17:41 2003 UTC

# Line 56 | Line 56 | function tidyName($machine_name, $string) {
56          $string = preg_replace("/$hex_underscore/", "_", $string);
57          return "Disk usage: $string";
58      }
59 +
60 +    # The name DiskIO information should be displayed as
61 +    if(preg_match("/^diskio-(\S+)$/", $string, $matches)) {
62 +        return "Disk IO: $matches[1]";
63 +    }
64 +
65 +    # The name Network information should be displayed as
66 +    if(preg_match("/^net-(\S+)$/", $string, $matches)) {
67 +        return "Network usage: $matches[1]";
68 +    }
69      
70      # The name Queue information should be displayed as
71      if($machine_name == "i-scream-server" && preg_match("/^\d+$/", $string)) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines