Collection of standard plugins to discover and gather cloud-to-edge metrics and status across your whole IT infrastructure.
Go to file
qgarnier f50bb5760c
clean(cisco/esa/restapi): system mode - remove useless code (#3173)
2021-10-04 14:52:37 +02:00
.github fix(chore): old dependabot's PR ticket creation (#3154) 2021-09-29 11:27:47 +02:00
apps enh(grafana): Rename restapi to api (#3159) 2021-09-30 12:21:22 +02:00
blockchain happy new year (#2579) 2021-02-08 09:55:50 +01:00
centreon fix(veeam): snap registred (#3151) 2021-09-28 14:29:53 +02:00
cloud enh(custom): Azure handle large results in list resources for discovery (#3172) 2021-10-01 16:05:30 +02:00
contrib doc(sec): deprecate cwrapper_perl (#2678) 2021-03-26 14:16:56 +01:00
database fix(oracle): function localtime mispelled (#3120) 2021-09-17 13:44:38 +02:00
doc Enhance exchange (#2488) 2021-01-07 18:22:31 +01:00
example happy new year (#2579) 2021-02-08 09:55:50 +01:00
hardware fix(hp/proliant/snmp): hardware mode - memory component issue (#3122) 2021-09-17 14:49:13 +02:00
network clean(cisco/esa/restapi): system mode - remove useless code (#3173) 2021-10-04 14:52:37 +02:00
notification enh(notification/teams): handle all types of notification (#2982) 2021-07-23 13:25:49 +02:00
os enh(windows/local): pending-reboot mode - encoding management (#3169) 2021-10-01 11:45:06 +02:00
snmp_standard/mode enh(snmp_standard): mode storage - simple access thresolds (#3101) 2021-09-13 14:42:17 +02:00
storage add(plugin): Dell PowerStore rest api (#3160) 2021-09-30 12:21:52 +02:00
Jenkinsfile enh(chore): remove CI's timeout workaround (#2945) 2021-07-06 17:23:42 +02:00
LICENSE.txt + License now Apache 2.0 2015-07-21 11:51:02 +02:00
README.md + add shields to readme 2021-05-21 11:51:49 +02:00
centreon_plugins.pl happy new year (#2579) 2021-02-08 09:55:50 +01:00
changelog update changelog 2021-09-15 09:02:41 +02:00
sonar-project.properties enh(chore): integrate sonarQube dev edition (#2937) 2021-07-06 10:14:28 +02:00

README.md

centreon-plugins

License

Contributors Stars Forks Issues

“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'.