diff options
-rw-r--r-- | inc/html.inc.php | 15 | ||||
-rw-r--r-- | layout/style.css | 11 |
2 files changed, 22 insertions, 4 deletions
diff --git a/inc/html.inc.php b/inc/html.inc.php index 0a33da5..015225e 100644 --- a/inc/html.inc.php +++ b/inc/html.inc.php | |||
@@ -173,6 +173,8 @@ function host_summary($cat, $hosts) { | |||
173 | foreach($hosts as $host) { | 173 | foreach($hosts as $host) { |
174 | $host_counter++; | 174 | $host_counter++; |
175 | 175 | ||
176 | $cores = count(group_plugindata(collectd_plugindata($host, 'cpu'))); | ||
177 | |||
176 | printf('<tr class="%s">', $row_style[$host_counter % 2]); | 178 | printf('<tr class="%s">', $row_style[$host_counter % 2]); |
177 | printf('<th><a href="%shost.php?h=%s">%s</a></th>', | 179 | printf('<th><a href="%shost.php?h=%s">%s</a></th>', |
178 | $CONFIG['weburl'],$host, $host); | 180 | $CONFIG['weburl'],$host, $host); |
@@ -189,10 +191,15 @@ function host_summary($cat, $hosts) { | |||
189 | isset($rrd_info['ds[midterm].last_ds']) && | 191 | isset($rrd_info['ds[midterm].last_ds']) && |
190 | isset($rrd_info['ds[longterm].last_ds'])) { | 192 | isset($rrd_info['ds[longterm].last_ds'])) { |
191 | 193 | ||
192 | printf('<td>%.2f</td><td>%.2f</td><td>%.2f</td>', | 194 | foreach (array('ds[shortterm].last_ds', 'ds[midterm].last_ds', 'ds[longterm].last_ds') as $info) { |
193 | $rrd_info['ds[shortterm].last_ds'], | 195 | $class = ''; |
194 | $rrd_info['ds[midterm].last_ds'], | 196 | if ($cores > 0 && $rrd_info[$info] > $cores * 2) |
195 | $rrd_info['ds[longterm].last_ds']); | 197 | $class = ' class="crit"'; |
198 | elseif ($cores > 0 && $rrd_info[$info] > $cores) | ||
199 | $class = ' class="warn"'; | ||
200 | |||
201 | printf('<td%s>%.2f</td>', $class, $rrd_info[$info]); | ||
202 | } | ||
196 | } | 203 | } |
197 | } | 204 | } |
198 | 205 | ||
diff --git a/layout/style.css b/layout/style.css index a828a8d..3d5c94b 100644 --- a/layout/style.css +++ b/layout/style.css | |||
@@ -138,3 +138,14 @@ legend { | |||
138 | font-size: 1.4em; | 138 | font-size: 1.4em; |
139 | font-weight: normal; | 139 | font-weight: normal; |
140 | } | 140 | } |
141 | |||
142 | .warn { | ||
143 | color: darkorange; | ||
144 | font-weight: normal; | ||
145 | text-shadow: 0 0 1px darkorange; | ||
146 | } | ||
147 | .crit { | ||
148 | color: red; | ||
149 | font-weight: normal; | ||
150 | text-shadow: 0 0 1px red; | ||
151 | } | ||