2010-07-26 Sergio Martin <sergio.martin@artica.es>
* include/functions_networkmap.php: Changed the color of the modules, agents and groups with alerts fired in the network maps from yellow to orange. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3062 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
5e2a3e3c95
commit
ec5f44be8f
|
@ -1,3 +1,9 @@
|
|||
2010-07-26 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/functions_networkmap.php: Changed the color of the
|
||||
modules, agents and groups with alerts fired in the network
|
||||
maps from yellow to orange.
|
||||
|
||||
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
|
||||
* images/mimetypes/text.png: added lost image file in previous commits about
|
||||
collections.
|
||||
|
|
|
@ -361,7 +361,7 @@ function create_group_node ($group, $simple = 0, $font_size = 10) {
|
|||
$status_color = '#FFE308'; // Warning monitor
|
||||
break;
|
||||
case 4:
|
||||
$status_color = '#FFE308'; // Alert fired
|
||||
$status_color = '#FFA300'; // Alert fired
|
||||
break;
|
||||
default:
|
||||
$status_color = '#BBBBBB'; // Unknown monitor
|
||||
|
@ -406,7 +406,7 @@ function create_agent_node ($agent, $simple = 0, $font_size = 10) {
|
|||
$status_color = '#FFE308'; // Warning monitor
|
||||
break;
|
||||
case 4:
|
||||
$status_color = '#FFE308'; // Alert fired
|
||||
$status_color = '#FFA300'; // Alert fired
|
||||
break;
|
||||
default:
|
||||
$status_color = '#BBBBBB'; // Unknown monitor
|
||||
|
@ -466,7 +466,7 @@ function create_module_node ($module, $simple = 0, $font_size = 10) {
|
|||
$status_color = '#FFE308'; // Warning monitor
|
||||
break;
|
||||
case 4:
|
||||
$status_color = '#FFE308'; // Alert fired
|
||||
$status_color = '#FFA300'; // Alert fired
|
||||
break;
|
||||
default:
|
||||
$status_color = '#BBBBBB'; // Unknown monitor
|
||||
|
|
Loading…
Reference in New Issue