Show Date from last discovery and last poll (#10876)

* show date from last discovery and last poll

* .

* .
This commit is contained in:
SourceDoctor
2019-12-02 13:15:12 +01:00
committed by Kevin Krumm
parent 78d017d1ba
commit 175516f5f7

View File

@@ -254,4 +254,11 @@ print_optionbar_start();
list($sizeondisk, $numrrds) = foldersize(get_rrd_dir($device['hostname']));
echo("Size on Disk: <b>" . formatStorage($sizeondisk) . "</b> in <b>" . $numrrds . " RRD files</b>.");
print_optionbar_end();
echo("<small>");
echo("Last polled: <b>" . $device['last_polled'] . "</b>");
if ($device['last_discovered']) {
echo("<br>Last discovered: <b>" . $device['last_discovered'] . "</b>");
}
echo("</small>");
?>