2014-05-15 Sergio Martin <sergio.martin@artica.es>
* include/help/en/help_ipam.php: Fix bad translations on ipam english help * extensions/realtime_graphs/ajax.php: Little improvement on pending pandora packages for realtime graphs git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9938 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8268ccb5df
commit
78f4be67b2
|
@ -1,3 +1,11 @@
|
|||
2014-05-15 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/help/en/help_ipam.php: Fix bad translations
|
||||
on ipam english help
|
||||
|
||||
* extensions/realtime_graphs/ajax.php: Little improvement
|
||||
on pending pandora packages for realtime graphs
|
||||
|
||||
2014-05-14 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* extensions/realtime_graphs/ajax.php
|
||||
|
|
|
@ -25,7 +25,7 @@ switch($graph) {
|
|||
$data = exec("top -bn 2 -d 0.01 | grep '^Cpu' | tail -n 1 | awk '{ print $2+$4+$6 }'");
|
||||
break;
|
||||
case 'pending_packets':
|
||||
$data = exec("ls /var/spool/pandora/data_in/ | wc -l");
|
||||
$data = exec("ls /var/spool/pandora/data_in/*.data | wc -l");
|
||||
break;
|
||||
case 'disk_io_wait':
|
||||
$data = exec("vmstat 1 3 | tail -1 | awk '{ print $16 }'");
|
||||
|
|
|
@ -29,22 +29,22 @@ Addresses will be shown as icons, large or small. This icons will render the fol
|
|||
<th>Unresponsive host</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>No agent assigned<br><br>Events disabled</td>
|
||||
<td>No assigned agent<br><br>Disabled events</td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/green_host.png"></td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/red_host.png"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>With assigned agent<br><br>Events disabled</td>
|
||||
<td>With assigned agent<br><br>Disabled events</td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/green_host_agent.png"></td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/red_host_agent.png"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>No agent assigned<br><br>Events activated</td>
|
||||
<td>No assigned agent<br><br>Activated events</td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/green_host_alert.png"></td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/red_host_alert.png"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>With assigned agent<br><br>Events activated</td>
|
||||
<td>With assigned agent<br><br>Activated events</td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/green_host_agent_alert.png"></td>
|
||||
<td style="text-align:center;"><img src="../enterprise/extensions/ipam/images/red_host_agent_alert.png"></td>
|
||||
</tr>
|
||||
|
@ -67,7 +67,7 @@ Each IP address have in the bottom right position a link to edit it (with admini
|
|||
|
||||
When you click on the main icon, a modal window will be opened showing all the IP information, including associated agent and OS, setup for that IP and other information, like creation date, last user edition or last time it was checked by server. In this view you can also do a manual, realtime check to see if that IP respond to ping. Note that this ping is done by the console, instead the regular check, done by the recon server.
|
||||
|
||||
<h3>Vista de edición</h3>
|
||||
<h3>Edition view</h3>
|
||||
If you have enought permission, you will have access to setup view, where IP address are shown as a list. You can filter to show only the IP's you are interested into, make changes and update all at once.<br><br>
|
||||
|
||||
Some fields, are automatically filled by the recon script, like hostname, if it have a Pandora FMS agent and the operating system. You can mark that fields as "manual" and edit them.<br><br>
|
||||
|
|
Loading…
Reference in New Issue