* Remote monitoring using tinc VPN
* Added 2 # command-pefixes
* Add bash source code highlighting
* Updated file name + some commands
* update docs
* Add a title for the RANCID section
* add single pool based poller for php-fpm
* add the page for php-fpm
* add graph for php-fpm
* I agree to the conditions of the Contributor Agreement contained in doc/General/Contributing.md.
* use named OID as suggest by @laf
* document PHP-FPM monitoring
* link it in the index
* clean up the named oid
* add how to grab the script in question
* add f2b poller
* add f2b app page
* add f2b graph
* add fail2ban notes
* minor formatting cleanup
* ...more formatting cleanup
* rename it so it can be called via the app page
* Revert "rename it so it can be called via the app page"
This reverts commit 0bde88a03840138fa28b75606e3cd269ce023f67.
* *rename it so it can be called via the apps page
*setup the apps page to call it
* renamed the graph
* now include fail2ban in the apps properly
* correct the wget command so it does not stomp on phpfpm-sp
* update the fail2ban poller for the newest fail2ban script and now build multiple RRDs
* update for now graphing firewalled and banned
* update fail2ban docs to match the newest snmpd extend method
* search automatically for jails and graph them
* graphs the currently banned for a fail2ban jail
* change the tital of the graph for the total banned to make it more descriptive
* Add a explanation of the two variables in the total graph.
* misc. white space cleans ups
* misc. white space cleanup
* minor white space cleanup
* correct descr lenght
* correct descr lenght
* Update fail2ban.inc.php
* Use rrd_name properly
* note the cache file bits
* make caching optional and note why
* Update to new RrdDefinition class
* And the use statement ;/
* Messed the second rrd_def
* correct two minor errors that did not seem to be causing issues
* don't use $vars as per pull #5994
* don't use $vars as per pull #5994
* fix jails graphs
* Remove loops and temp variables
* whitespace
* Change graph so we don't get fractions
* refactor: Updated storing of sensors data to be used in unix-agent #5904
* updated from scrut output
* another scrut update
* added missing dbUpdate
* small change
* small change
* Add CPU and memory for Entera devices
* Renaming file for consistency
* split -> explode
* Added graphs to overview page, changed oid used for CPU, and added storage
* Remove uneeded code
* Fixed storage
* Update LLDP discovery to use IP address if discovery_by_ip is enabled
* Update as per laf's suggetions
* Fix indentation
* Updated with Laf's suggestion
* Add more debugging
* Trim MAC address
* Remove debug statements
* feature: Allow customisation of rrd step/heartbeat when creating new rrd files
* revert defaults
* added docs + webui config option
* Move RrdDefinition to an Object to make them easier to create and remove the possibility of typos.
* Fix style/lint issues and missing use statements
* 3 more missing use statements
* updated doc + moved schema file
* Update services page
- Bring services overview page in line with the rest of the interface
using bootstrap classes, panels, colors etc.
- Getting rid of most of the tables using bootstrap's grid classes.
Device services page might need a bit more work but I'm not ready yet.
* Fix style check issues
* Bigger status labels
* fix: addhost.php throw proper exception when database add fails
createHost() now throws an exception when adding to the database fails with a hint to run ./validate.php
Add phpdocs to createHost()
* fixed exim app queue graph to show queue and not frozen messages
* I agree to the conditions of the Contributor Agreement contained in doc/General/Contributing.md.
* Update exim-stats.inc.php
Output from debug of poller.php:
SNMP[/usr/bin/snmpget -v2c -c COMMUNITY -Oqv -M /opt/librenms/mibs:/opt/librenms/mibs/supermicro udp:HOSTNAME:161 .1.3.6.1.4.1.8072.1.3.2.3.1.2.10.101.120.105.109.45.115.116.97.116.115]
"0
0"
exim-statsRRD[update /opt/librenms/rrd/monitoring2/app-exim-stats-5.rrd N:0:0]
So we have two resulting variables from that outpu (note additional quotes there)
$frozen = '"0';
$queue = '0"';
And it fails. My graphs contain nan instead of real values. I think same issue is with apache application.
* Update exim-stats.inc.php
Updated to remove quote from string and then convert it to integer.