Collection of standard plugins to discover and gather cloud-to-edge metrics and status across your whole IT infrastructure.
Go to file
garnier-quentin 5684fc0056 fix synology upgrade 2020-12-01 11:00:53 +01:00
.github enh(issuetemplate)cosmetic, no scroll to reach/read the important part (#2288) 2020-10-27 11:29:26 +01:00
apps enhance curl 2020-11-24 15:41:14 +01:00
blockchain add list-storages + remove carriage return (#2191) 2020-09-04 12:51:07 +02:00
centreon wip fortiauthenticator 2020-11-27 16:28:10 +01:00
cloud fix tasks docker 2020-11-27 11:58:15 +01:00
contrib enh(doc): rename /docs/ folder to /doc/ to ease generation and pimp conf.py. 2020-06-15 10:31:36 +02:00
database enh postgres tablespace 2020-11-26 14:41:56 +01:00
doc enh(doc): rename /docs/ folder to /doc/ to ease generation and pimp conf.py. 2020-06-15 10:31:36 +02:00
example remove useless code 2020-07-01 18:15:11 +02:00
hardware enh(idrac) Fix nonRecoverable severity 2020-11-29 18:54:30 +01:00
network fix auth 2020-11-27 16:52:28 +01:00
notification add missing host output to notification 2020-04-17 00:48:34 +02:00
os enhance linux local (#2352) 2020-11-18 16:13:56 +01:00
snmp_standard/mode memory snmp standard - revert units 2020-10-06 09:23:48 +02:00
storage fix synology upgrade 2020-12-01 11:00:53 +01:00
Jenkinsfile limit build history to 50 items. 2020-04-21 09:20:09 +02:00
LICENSE.txt
README.md update readm 2020-07-29 13:20:30 +02:00
centreon_plugins.pl happy new year! 2020-01-06 15:19:23 +01:00
changelog prepare release 2020-10-08 10:57:40 +02:00
sonar-project.properties

README.md

centreon-plugins

License GitHub stars GitHub forks

“centreon-plugins” is a free and open source project to monitor systems. The project can be used with Centreon and all monitoring softwares compatible with Nagios plugins.

You can monitor many systems:

  • application: Apache, Asterisk, Elasticsearch, Github, Jenkins, Kafka, Nginx, Pfsense, Redis, Tomcat, Varnish,...
  • cloud: AWS, Azure, Docker, Office365, Nutanix, Prometheus,...
  • database: Firebird, Informix, MS SQL, MySQL, Oracle, Postgres, Cassandra
  • hardware: printers (rfc3805), UPS (Powerware, Mge, Standard), Sun Hardware, Cisco UCS, SensorIP, HP Proliant, HP Bladechassis, Dell Openmanage, Dell CMC, Raritan,...
  • network: Aruba, Brocade, Bluecoat, Brocade, Checkpoint, Cisco AP/IronPort/ASA/Standard, Extreme, Fortigate, H3C, Hirschmann, HP Procurve, F5 BIG-IP, Juniper, PaloAlto, Redback, Riverbed, Ruggedcom, Stonesoft,...
  • os: Linux (SNMP, NRPE), Freebsd (SNMP), AIX (SNMP), Solaris (SNMP)...
  • storage: EMC Clariion, Netapp, Nimble, HP MSA p2000, Dell EqualLogic, Qnap, Panzura, Synology...

Basic Usage

We'll use a basic example to show you how to monitor a system. I have finished the install section and i want to monitor a Linux in SNMP. First, i need to find the plugin to use in the list:

$ perl centreon_plugins.pl --list-plugin | grep -i linux | grep 'PLUGIN'
PLUGIN: os::linux::local::plugin
PLUGIN: os::linux::snmp::plugin

It seems that 'os::linux::snmp::plugin' is the good one. So i verify with the option --help to be sure:

$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --help
...
Plugin Description:
  Check Linux operating systems in SNMP.

It's exactly what i need. Now i'll add the option --list-mode to know what can i do with it:

$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --list-mode
...
Modes Available:
 processcount
 time
 list-storages
 disk-usage
 diskio
 uptime
 swap
 cpu-detailed
 load
 traffic
 cpu
 inodes
 list-diskspath
 list-interfaces
 packet-errors
 memory
 tcpcon
 storage

I would like to test the 'load' mode:

$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --mode=load
UNKNOWN: Missing parameter --hostname.

It's not working because some options are missing. I can have a description of the mode and options with the option --help:

$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --mode=load --help

Eventually, i have to configure some SNMP options:

$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --mode=load --hostname=127.0.0.1 --snmp-version=2c --snmp-community=public
OK: Load average: 0.00, 0.00, 0.00 | 'load1'=0.00;;;0; 'load5'=0.00;;;0; 'load15'=0.00;;;0;

I can set threshold with options --warning and --critical:

$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --mode=load --hostname=127.0.0.1 --snmp-version=2c --snmp-community=public --warning=1,2,3 --critical=2,3,4
OK: Load average: 0.00, 0.00, 0.00 | 'load1'=0.00;0:1;0:2;0; 'load5'=0.00;0:2;0:3;0; 'load15'=0.00;0:3;0:4;0;

For more information or help, please read 'doc/en/user/guide.rst'.