mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Always output header (may be missing mysql data) Improve version display, now looks like '1.28-129-g74e6c3edf' <tag>-<commits since tag>-<shortag> Add mysqli to the list of required extensions, check extensions before init Add dbIsConnected() function, used to check if we have db in version_info() Do not die on IPv4 and IPv6 so validate can print errors. Move git checks so they are output together fix rrdtool 1.7.0 reports version as 1.7.01.7.0
242 lines
11 KiB
PHP
242 lines
11 KiB
PHP
<?php
|
|
$pagetitle[] = 'About';
|
|
$git_log = `git log -10`;
|
|
?>
|
|
<div class="modal fade" id="git_log" tabindex="-1" role="dialog" aria-labelledby="git_log_label" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title" id="myModalLabel">Local git log</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<pre><?php echo htmlspecialchars($git_log, ENT_COMPAT, 'ISO-8859-1', true); ?></pre>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="margin: 10px;">
|
|
<div style="float: right; padding: 0px; width: 49%">
|
|
<h3>License</h3>
|
|
<pre>
|
|
Copyright (C) 2013-<?php echo date('Y').' '.$config['project_name']; ?> Contributors
|
|
Copyright (C) 2006-2012 Adam Armstrong
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>.</pre>
|
|
|
|
|
|
|
|
|
|
<h3>Statistics</h3>
|
|
|
|
<?php
|
|
$stat_devices = dbFetchCell('SELECT COUNT(device_id) FROM `devices`');
|
|
$stat_ports = dbFetchCell('SELECT COUNT(port_id) FROM `ports`');
|
|
$stat_syslog = dbFetchCell('SELECT COUNT(seq) FROM `syslog`');
|
|
$stat_events = dbFetchCell('SELECT COUNT(event_id) FROM `eventlog`');
|
|
$stat_apps = dbFetchCell('SELECT COUNT(app_id) FROM `applications`');
|
|
$stat_services = dbFetchCell('SELECT COUNT(service_id) FROM `services`');
|
|
$stat_storage = dbFetchCell('SELECT COUNT(storage_id) FROM `storage`');
|
|
$stat_diskio = dbFetchCell('SELECT COUNT(diskio_id) FROM `ucd_diskio`');
|
|
$stat_processors = dbFetchCell('SELECT COUNT(processor_id) FROM `processors`');
|
|
$stat_memory = dbFetchCell('SELECT COUNT(mempool_id) FROM `mempools`');
|
|
$stat_sensors = dbFetchCell('SELECT COUNT(sensor_id) FROM `sensors`');
|
|
$stat_toner = dbFetchCell('SELECT COUNT(toner_id) FROM `toner`');
|
|
$stat_hrdev = dbFetchCell('SELECT COUNT(hrDevice_id) FROM `hrDevice`');
|
|
$stat_entphys = dbFetchCell('SELECT COUNT(entPhysical_id) FROM `entPhysical`');
|
|
|
|
$stat_ipv4_addy = dbFetchCell('SELECT COUNT(ipv4_address_id) FROM `ipv4_addresses`');
|
|
$stat_ipv4_nets = dbFetchCell('SELECT COUNT(ipv4_network_id) FROM `ipv4_networks`');
|
|
$stat_ipv6_addy = dbFetchCell('SELECT COUNT(ipv6_address_id) FROM `ipv6_addresses`');
|
|
$stat_ipv6_nets = dbFetchCell('SELECT COUNT(ipv6_network_id) FROM `ipv6_networks`');
|
|
|
|
$stat_pw = dbFetchCell('SELECT COUNT(pseudowire_id) FROM `pseudowires`');
|
|
$stat_vrf = dbFetchCell('SELECT COUNT(vrf_id) FROM `vrfs`');
|
|
$stat_vlans = dbFetchCell('SELECT COUNT(vlan_id) FROM `vlans`');
|
|
|
|
$callback_status = dbFetchCell("SELECT `value` FROM `callback` WHERE `name` = 'enabled'");
|
|
if ($callback_status == 1) {
|
|
$stats_checked = 'checked';
|
|
} else {
|
|
$stats_checked = '';
|
|
}
|
|
|
|
if (extension_loaded('curl')) {
|
|
$callback = '<label for="callback"> Opt in to send anonymous usage statistics to LibreNMS?</label><br /><input type="checkbox" id="callback" data-size="normal" name="statistics" '.$stats_checked.'>';
|
|
} else {
|
|
$callback = "PHP Curl module isn't installed, please install this, restart your web service and refresh this page.";
|
|
}
|
|
|
|
echo "
|
|
<div class='table-responsive'>
|
|
<table class='table table-condensed'>
|
|
<tr>";
|
|
|
|
if (is_admin() === true) {
|
|
echo " <td colspan='4'><span class='bg-danger'>$callback</span><br />
|
|
Online stats: <a href='https://stats.librenms.org/'>stats.librenms.org</a></td>
|
|
<tr>
|
|
";
|
|
}
|
|
|
|
if (dbFetchCell("SELECT `value` FROM `callback` WHERE `name` = 'uuid'") != '' && $callback_status != 2) {
|
|
echo "
|
|
<tr>
|
|
<td colspan='4'><button class='btn btn-danger btn-xs' type='submit' name='clear-stats' id='clear-stats'>Clear remote stats</button></td>
|
|
</tr>
|
|
";
|
|
}
|
|
|
|
echo "
|
|
<td><i class='fa fa-fw fa-server fa-lg icon-theme' aria-hidden='true'></i> <b>Devices</b></td><td class='text-right'>$stat_devices</td>
|
|
<td><i class='fa fa-fw fa-link fa-lg icon-theme' aria-hidden='true'></i> <b>Ports</b></td><td class='text-right'>$stat_ports</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-battery-empty fa-lg icon-theme' aria-hidden='true'></i> <b>IPv4 Addresses<b></td><td class='text-right'>$stat_ipv4_addy</td>
|
|
<td><i class='fa fa-fw fa-battery-empty fa-lg icon-theme' aria-hidden='true'></i> <b>IPv4 Networks</b></td><td class='text-right'>$stat_ipv4_nets</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-battery-full fa-lg icon-theme' aria-hidden='true'></i> <b>IPv6 Addresses<b></td><td class='text-right'>$stat_ipv6_addy</td>
|
|
<td><i class='fa fa-fw fa-battery-full fa-lg icon-theme' aria-hidden='true'></i> <b>IPv6 Networks</b></td><td class='text-right'>$stat_ipv6_nets</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-cogs fa-lg icon-theme' aria-hidden='true'></i> <b>Services<b></td><td class='text-right'>$stat_services</td>
|
|
<td><i class='fa fa-fw fa-cubes fa-lg icon-theme' aria-hidden='true'></i> <b>Applications</b></td><td class='text-right'>$stat_apps</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-microchip fa-lg icon-theme' aria-hidden='true'></i> <b>Processors</b></td><td class='text-right'>$stat_processors</td>
|
|
<td><i class='fa fa-fw fa-braille fa-lg icon-theme' aria-hidden='true'></i> <b>Memory</b></td><td class='text-right'>$stat_memory</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-database fa-lg icon-theme' aria-hidden='true'></i> <b>Storage</b></td><td class='text-right'>$stat_storage</td>
|
|
<td><i class='fa fa-fw fa-hdd-o fa-lg icon-theme' aria-hidden='true'></i> <b>Disk I/O</b></td><td class='text-right'>$stat_diskio</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-cube fa-lg icon-theme' aria-hidden='true'></i> <b>HR-MIB</b></td><td class='text-right'>$stat_hrdev</td>
|
|
<td><i class='fa fa-fw fa-cube fa-lg icon-theme' aria-hidden='true'></i> <b>Entity-MIB</b></td><td class='text-right'>$stat_entphys</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-clone fa-lg icon-theme' aria-hidden='true'></i> <b>Syslog Entries</b></td><td class='text-right'>$stat_syslog</td>
|
|
<td><i class='fa fa-fw fa-bookmark fa-lg icon-theme' aria-hidden='true'></i> <b>Eventlog Entries</b></td><td class='text-right'>$stat_events</td>
|
|
</tr>
|
|
<tr>
|
|
<td><i class='fa fa-fw fa-dashboard fa-lg icon-theme' aria-hidden='true'></i> <b>Sensors</b></td><td class='text-right'>$stat_sensors</td>
|
|
<td><i class='fa fa-fw fa-print fa-lg icon-theme' aria-hidden='true'></i> <b>Toner</b></td><td class='text-right'>$stat_toner</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
";
|
|
?>
|
|
</div>
|
|
|
|
<div style="float: left; padding: 0px; width: 49%">
|
|
|
|
<h3>LibreNMS is an autodiscovering PHP/MySQL-based network monitoring system.</h3>
|
|
<?php
|
|
$versions = version_info(false);
|
|
$project_name = $config['project_name'];
|
|
$webserv_version = $_SERVER['SERVER_SOFTWARE'];
|
|
$php_version = $versions['php_ver'];
|
|
$mysql_version = $versions['mysql_ver'];
|
|
$netsnmp_version = $versions['netsnmp_ver'];
|
|
$rrdtool_version = $versions['rrdtool_ver'];
|
|
$schema_version = $versions['db_schema'];
|
|
$version = $versions['local_ver'];
|
|
$version_date = $versions['local_date'];
|
|
|
|
echo "
|
|
<div class='table-responsive'>
|
|
<table class='table table-condensed' border='0'>
|
|
<tr><td><b>Version</b></td><td><a href='http://www.librenms.org/changelog.html'>$version - <span id='version_date'>$version_date</span></a></td></tr>
|
|
<tr><td><b>DB Schema</b></td><td>#$schema_version</td></tr>
|
|
<tr><td><b>Web Server</b></td><td>$webserv_version</td></tr>
|
|
<tr><td><b>PHP</b></td><td>$php_version</td></tr>
|
|
<tr><td><b>MySQL</b></td><td>$mysql_version</td></tr>
|
|
<tr><td><b>RRDtool</b></td><td>$rrdtool_version</td></tr>
|
|
</table>
|
|
</div>
|
|
";
|
|
|
|
|
|
?>
|
|
|
|
<h5>LibreNMS is a community-based project. Please feel free to join us and contribute code, documentation, and bug reports:</h5>
|
|
|
|
<p>
|
|
<a href="http://www.librenms.org/">Web site</a> |
|
|
<a href="https://github.com/librenms/">GitHub</a> |
|
|
<a href="https://github.com/librenms/librenms/issues">Bug tracker</a> |
|
|
<a href="https://community.librenms.org">Community Forum</a> |
|
|
<a href="http://twitter.com/librenms">Twitter</a> |
|
|
<a href="http://www.librenms.org/changelog.html">Changelog</a> |
|
|
<a href="#" data-toggle="modal" data-target="#git_log">Git log</a>
|
|
</p>
|
|
|
|
<div style="margin-top:10px;">
|
|
</div>
|
|
|
|
<h3>Contributors</h3>
|
|
|
|
<p>See the <a href="https://github.com/librenms/librenms/blob/master/AUTHORS.md">list of contributors</a> on GitHub.</p>
|
|
|
|
<h3>Acknowledgements</h3>
|
|
|
|
<b>Bruno Pramont</b> Collectd code. <br />
|
|
<b>Dennis de Houx</b> Application monitors for PowerDNS, Shoutcast, NTPD (Client, Server). <br />
|
|
<b>Erik Bosrup</b> Overlib Library. <br />
|
|
<b>Jonathan De Graeve</b> SNMP code improvements. <br />
|
|
<b>Mark James</b> Silk Iconset. <br />
|
|
<b>Observium</b> Codebase for fork. <br />
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$("[name='statistics']").bootstrapSwitch('offColor','danger','size','mini');
|
|
$('input[name="statistics"]').on('switchChange.bootstrapSwitch', function(event, state) {
|
|
event.preventDefault();
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: 'ajax_form.php',
|
|
data: { type: "callback-statistics", state: state},
|
|
dataType: "html",
|
|
success: function(data){
|
|
},
|
|
error:function(){
|
|
return $("#switch-state").bootstrapSwitch("toggle");
|
|
}
|
|
});
|
|
});
|
|
$('#clear-stats').click(function(event) {
|
|
event.preventDefault();
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: 'ajax_form.php',
|
|
data: { type: "callback-clear"},
|
|
dataType: "html",
|
|
success: function(data){
|
|
location.reload(true);
|
|
},
|
|
error:function(){
|
|
}
|
|
});
|
|
});
|
|
|
|
var ver_date = $('#version_date');
|
|
ver_date.text(moment.unix(ver_date.text()));
|
|
</script>
|