Infrastructure Monitoring

Monitor your whole IT infrastructure.

Servers, network, cloud and applications in one platform. Grab the packages, sources, appliances, agent and connectors to deploy Centreon your way.

Centreon 25.104 file(s)
ProductVersionOSDateSize
VMWare25.10-20260800.deb12deb12Sep 11, 20261.50 GB
Vbox25.10-20260800.deb12deb12Sep 11, 20261.50 GB
VMWare25.10-20260800.alma9alma9Sep 11, 20261.50 GB
Vbox25.10-20260800.alma9alma9Sep 11, 20261.50 GB
Centreon 24.104 file(s)
ProductVersionOSDateSize
VMWare24.10-20260800.deb12deb12Sep 11, 20261.55 GB
Vbox24.10-20260800.deb12deb12Sep 11, 20261.55 GB
VMWare24.10-20260800.alma9alma9Sep 11, 20261.58 GB
Vbox24.10-20260800.alma9alma9Sep 11, 20261.58 GB
Centreon 24.044 file(s)
ProductVersionOSDateSize
VMWare24.04-20260400.deb12deb12May 12, 20261.50 GB
Vbox24.04-20260400.deb12deb12May 12, 20261.50 GB
VMWare24.04-20260400.alma9alma9May 12, 20261.89 GB
Vbox24.04-20260400.alma9alma9May 12, 20261.89 GB
Centreon 23.102 file(s)
ProductVersionOSDateSize
Vbox23_10-1.el8el8May 13, 20241.05 GB
VMWare23_10-1.el8el8Oct 31, 20231.11 GB
Centreon 23.042 file(s)
ProductVersionOSDateSize
VMWare23_04-1.el8el8Jul 12, 20231.74 GB
Vbox23_04-1.el8.ovael8May 3, 2023988.49 MB
Centreon 22.102 file(s)
ProductVersionOSDateSize
VMWare22_10-2.el8.ovael8Oct 26, 20222.00 GB
Vbox22_10-2.el7.ovael7Oct 26, 20222.00 GB

Install a central server in one command

Fresh OS? The unattended install does everything for you. Channel 25.10-latest.

It gets you up and running fast. Plenty of room remains for customization, optimization and architecture choices.

Select your OS to tailor the steps

  1. 1

    Prepare the system

    Install RHEL / AlmaLinux / Oracle Linux (8 or 9), then update the OS:

    dnf update
    apt update && apt upgrade -y
  2. 2

    Run the installation root

    One line, and the central installs itself:

    curl -L -s https://raw.githubusercontent.com/centreon/centreon/25.10-latest/centreon/unattended.sh | sh

    The script then automatically:

    • Enables SELinux (permissive mode)
    • Installs the Centreon repository
    • Installs Centreon
    • Sets the PHP timezone
    • Adds firewall rules (only if firewalld is enabled)
    • Enables and starts the processes
    wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /usr/share/keyrings/centreon.gpg > /dev/null
    echo "deb [signed-by=/usr/share/keyrings/centreon.gpg] https://packages.centreon.com/apt-standard-25.10-stable/ $(lsb_release -sc) main" \
      | tee /etc/apt/sources.list.d/centreon.list
    apt update && apt install -y centreon
  3. 3

    Configure the web interface

    Log in to http://[SERVER_IP]/centreon then follow the wizard.Detailed steps in the docs →

  4. Start monitoring

    You're all set.Quick start guide →

Product overview

Centreon Monitoring Agent

The Centreon Monitoring Agent (CMA) is a lightweight, secure, next-generation agent that natively monitors Linux and Windows hosts. It streams metrics and checks to your platform over encrypted gRPC, installs in seconds and runs with a tiny footprint, with no plugin to deploy on the host. Pick your operating system below to download the installer or copy the install commands.

$ uname → choose your OS:
Centreon Monitoring Agent · Windows
v25.10.821.14 MB
Download installer
MD5 
v24.10.1821.08 MB
Download installer
MD5 
All Windows versions (21)
VersionSizeMD5
25.10.821.14 MB
25.10.720.89 MB
25.10.620.61 MB
25.10.520.61 MB
25.10.420.59 MB
25.10.320.59 MB
25.10.220.58 MB
25.10.120.56 MB
25.10.020.53 MB
24.10.1821.08 MB
24.10.1721.08 MB
24.10.1620.83 MB
24.10.1520.83 MB
24.10.1420.83 MB
24.10.1320.57 MB
24.10.1220.55 MB
24.10.1120.75 MB
24.10.1020.75 MB
24.10.920.75 MB
24.10.720.74 MB
24.10.620.46 MB

64-bit installer (.exe). Run as administrator. Windows Server 2016+ / Windows 10+.

RHEL / AlmaLinux / Rocky (el8, el9, el10)
# Dépôt Centreon 25.10 (exemple el9)
dnf install -y https://packages.centreon.com/rpm-standard/25.10/el9/centreon-25.10.repo
dnf install -y centreon-monitoring-agent
systemctl enable --now centreon-monitoring-agent
# Dépôt Centreon 24.10 (exemple el9)
dnf install -y https://packages.centreon.com/rpm-standard/24.10/el9/centreon-24.10.repo
dnf install -y centreon-monitoring-agent
systemctl enable --now centreon-monitoring-agent

Exemple en el9 — adapter l'elX (el8/el9/el10). Le service écoute par défaut sur le port 4317 (gRPC).

Debian / Ubuntu
# Clé + dépôt Centreon 25.10
wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /usr/share/keyrings/centreon.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/centreon.gpg] https://apt.centreon.com/25.10 $(lsb_release -sc) main" \
  | tee /etc/apt/sources.list.d/centreon.list
apt update && apt install -y centreon-monitoring-agent
systemctl enable --now centreon-monitoring-agent
# Clé + dépôt Centreon 24.10
wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /usr/share/keyrings/centreon.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/centreon.gpg] https://apt.centreon.com/24.10 $(lsb_release -sc) main" \
  | tee /etc/apt/sources.list.d/centreon.list
apt update && apt install -y centreon-monitoring-agent
systemctl enable --now centreon-monitoring-agent

Le service écoute par défaut sur le port 4317 (gRPC).

732 Connectors

Monitoring connectors (Plugin Packs) with ready-to-use templates and auto-discovery for your entire stack.

Preview: connectors are installed in-product via the Centreon marketplace.

3CX3CX3com Network3com NetworkA10 AXA10 AXABB CMS-700ABB CMS-700AEG ACMAEG ACMAIX SNMPAIX SNMPAIX SSHAIX SSHAKCP SensorAKCP SensorAPC ATSAPC ATSAPC PDU SNMPAPC PDU SNMPAPC Sensor SNMPAPC Sensor SNMPAPC UPSAPC UPSAWS BillingAWS BillingAWS DiscoverAWS DiscoverAWS ELBAWS ELBAWS HealthAWS HealthAWS LambdaAWS LambdaAWS Transit GatewayAWS Transit GatewayAWS VPNAWS VPNAcme PacketAcme PacketActive DirectoryActive DirectoryActive Directory CMAActive Directory CMAActive Directory Rest APIActive Directory Rest APIActive Directory WSMANActive Directory WSMANActivemq JMXActivemq JMXAdder AIM SNMPAdder AIM SNMPAdic Tape SNMPAdic Tape SNMPAdva FSP 150 SNMPAdva FSP 150 SNMPAdva FSP 3000 SNMPAdva FSP 3000 SNMPAerohiveAerohiveAlcatel OXEAlcatel OXEAlcatel OmniswitchAlcatel OmniswitchAllied Telesis SNMPAllied Telesis SNMPAlpha UPS SNMPAlpha UPS SNMPAlvarion BreezeACCESS SNMPAlvarion BreezeACCESS SNMPAlyvix Server RestAPIAlyvix Server RestAPIAmazon API GatewayAmazon API GatewayAmazon Backup VaultAmazon Backup VaultAmazon CloudFrontAmazon CloudFrontAmazon CloudTrailAmazon CloudTrailAmazon CloudWatchAmazon CloudWatchAmazon CloudWatch LogsAmazon CloudWatch LogsAmazon Direct ConnectAmazon Direct ConnectAmazon EBSAmazon EBSAmazon EC2Amazon EC2Amazon EFSAmazon EFSAmazon ElastiCacheAmazon ElastiCacheAmazon FSxAmazon FSxAmazon KinesisAmazon KinesisAmazon RDSAmazon RDSAmazon S3Amazon S3Amazon SESAmazon SESAmazon SNSAmazon SNSAmazon SQSAmazon SQSAnsibleAnsibleAnsible TowerAnsible TowerAntivirus ClamAVAntivirus ClamAVApache CXFApache CXFApache ServerApache ServerAppear TV SNMPAppear TV SNMPArista Switch SNMPArista Switch SNMPArkoon SNMPArkoon SNMPAruba CPPM SNMPAruba CPPM SNMPAruba Instant SNMPAruba Instant SNMPAruba Orchestrator Rest APIAruba Orchestrator Rest APIAruba Standard SNMPAruba Standard SNMPArubaOS-CX SNMPArubaOS-CX SNMPAsterisk VoIP AMIAsterisk VoIP AMIAsterisk VoIP SNMPAsterisk VoIP SNMPAsterisk VoIP ServerAsterisk VoIP ServerAthonet ePC SNMPAthonet ePC SNMPAtrica RouteurAtrica RouteurAtto Fibrebridge SNMPAtto Fibrebridge SNMPAudioCodesAudioCodesAvaya AES SNMPAvaya AES SNMPAvaya CM SNMPAvaya CM SNMPAvaya Media Gateway SNMPAvaya Media Gateway SNMPAviat Networks SNMPAviat Networks SNMPAvid IsisAvid IsisAvocent ACS 6000Avocent ACS 6000Avocent ACS 8000Avocent ACS 8000Awa JMXAwa JMXAxis VideoAxis VideoAzure API ManagementAzure API ManagementAzure App ConfigurationAzure App ConfigurationAzure App ServiceAzure App ServiceAzure App Service PlanAzure App Service PlanAzure Application GatewayAzure Application GatewayAzure Application InsightsAzure Application InsightsAzure AutomationAzure AutomationAzure CDNAzure CDNAzure Cache for RedisAzure Cache for RedisAzure Classic StorageAzure Classic StorageAzure Container RegistryAzure Container RegistryAzure Cosmos DBAzure Cosmos DBAzure Data FactoryAzure Data FactoryAzure Database for MariaDBAzure Database for MariaDBAzure Database for MySQLAzure Database for MySQLAzure Database for PostgreSQLAzure Database for PostgreSQLAzure DiscoverAzure DiscoverAzure Elastic PoolAzure Elastic PoolAzure Event GridAzure Event GridAzure Event HubsAzure Event HubsAzure ExpressRouteAzure ExpressRouteAzure FirewallAzure FirewallAzure Front DoorAzure Front DoorAzure FunctionsAzure FunctionsAzure InsightsMetricsAzure InsightsMetricsAzure Key VaultAzure Key VaultAzure Kubernetes ServiceAzure Kubernetes ServiceAzure Load BalancerAzure Load BalancerAzure Log AnalyticsAzure Log AnalyticsAzure Management CostsAzure Management CostsAzure MonitorAzure MonitorAzure Network InterfaceAzure Network InterfaceAzure Policies StatesAzure Policies StatesAzure Public IPAzure Public IPAzure RecoveryAzure RecoveryAzure ResourceAzure ResourceAzure SQL DatabaseAzure SQL DatabaseAzure SQL Managed InstanceAzure SQL Managed InstanceAzure SQL ServerAzure SQL ServerAzure ServiceBusAzure ServiceBusAzure SignalRAzure SignalRAzure Storage AccountAzure Storage AccountAzure Storage SyncAzure Storage SyncAzure Traffic ManagerAzure Traffic ManagerAzure VPN GatewayAzure VPN GatewayAzure Virtual MachineAzure Virtual MachineAzure Virtual Machine Scale SetsAzure Virtual Machine Scale SetsAzure Virtual NetworkAzure Virtual NetworkBDT MultiStak SNMPBDT MultiStak SNMPBGP ProtocolBGP ProtocolBGP Protocol SNMPBGP Protocol SNMPBackboxBackboxBarco ClickShare Rest APIBarco ClickShare Rest APIBarracuda Cloudgen SNMPBarracuda Cloudgen SNMPBarracuda Message Archiver SNMPBarracuda Message Archiver SNMPBase PackBase PackBee WareBee WareBind9 WebBind9 WebBlueMindBlueMindBluecoat genericBluecoat genericBluemind SSHBluemind SSHBrocade SwitchBrocade SwitchBuffalo TeraStation SNMPBuffalo TeraStation SNMPCambium cnPilot SNMPCambium cnPilot SNMPCambium ePMP SNMPCambium ePMP SNMPCamera Avigilon SNMPCamera Avigilon SNMPCassandraCassandraCato Networks APICato Networks APICentreon CentralCentreon CentralCentreon DEM (formerly Quanta) Rest APICentreon DEM (formerly Quanta) Rest APICentreon DatabaseCentreon DatabaseCentreon MBICentreon MBICentreon MapCentreon MapCentreon Map EngineCentreon Map EngineCentreon Map4Centreon Map4Centreon PollerCentreon PollerCentreon SQL MetricsCentreon SQL MetricsCentreon-HACentreon-HACeph RestAPICeph RestAPIChapsVision CrossinG SNMPChapsVision CrossinG SNMPCheckPoint firewallCheckPoint firewallCisco ASACisco ASACisco ApicCisco ApicCisco CMSCisco CMSCisco Call ManagerCisco Call ManagerCisco Collaboration Endpoint Rest APICisco Collaboration Endpoint Rest APICisco DNA Center Rest APICisco DNA Center Rest APICisco ESA Rest APICisco ESA Rest APICisco ESA XMLAPICisco ESA XMLAPICisco Firepower FMC Rest APICisco Firepower FMC Rest APICisco Firepower SNMPCisco Firepower SNMPCisco ISECisco ISECisco IronPortCisco IronPortCisco Meraki Rest APICisco Meraki Rest APICisco Meraki SNMPCisco Meraki SNMPCisco PrimeCisco PrimeCisco SSMSCisco SSMSCisco Small BusinessCisco Small BusinessCisco Standard SNMPCisco Standard SNMPCisco Standard SSHCisco Standard SSHCisco Telepresence System SNMPCisco Telepresence System SNMPCisco UCS SNMPCisco UCS SNMPCisco UmbrellaCisco UmbrellaCisco Unified Communications Manager SXMCisco Unified Communications Manager SXMCisco VCS Rest APICisco VCS Rest APICisco Voice GatewayCisco Voice GatewayCisco WLCCisco WLCCisco Waas SNMPCisco Waas SNMPCisco WapCisco WapCitrix AccelerationCitrix AccelerationCitrix NetscalerCitrix NetscalerCitrix SDXCitrix SDXClever PDUClever PDUCloud FoundryCloud FoundryColubris SNMPColubris SNMPComet P8000 Sensor SNMPComet P8000 Sensor SNMPCommvault Commserve Rest APICommvault Commserve Rest APIControl-M Rest APIControl-M Rest APICouchDB Rest APICouchDB Rest APICyberPower Systems PDU SNMPCyberPower Systems PDU SNMPCyberPower Systems UPS SNMPCyberPower Systems UPS SNMPCyberoamCyberoamD-Link DGS 3100 SNMPD-Link DGS 3100 SNMPD-Link NetworkD-Link NetworkDB2 DatabaseDB2 DatabaseDHCP ServerDHCP ServerDNS ServiceDNS ServiceDRBD SSHDRBD SSHDatacore SANsymphony RESTAPIDatacore SANsymphony RESTAPIDell 6200Dell 6200Dell 6200 SNMPDell 6200 SNMPDell CMCDell CMCDell Compellent Nsclient NRPEDell Compellent Nsclient NRPEDell Compellent SNMPDell Compellent SNMPDell EquallogicDell EquallogicDell FluidFSDell FluidFSDell MD3000Dell MD3000Dell ML6000Dell ML6000Dell Me4 Rest APIDell Me4 Rest APIDell N-series SNMPDell N-series SNMPDell N4000Dell N4000Dell OME–Modular SNMPDell OME–Modular SNMPDell OS10 SNMPDell OS10 SNMPDell OpenManageDell OpenManageDell PowerStore Rest APIDell PowerStore Rest APIDell S-seriesDell S-seriesDell TL2000Dell TL2000Dell VxRail Manager Rest APIDell VxRail Manager Rest APIDell XseriesDell XseriesDell iDRAC SNMPDell iDRAC SNMPDenyAll (Rohde & Schwarz) SNMPDenyAll (Rohde & Schwarz) SNMPDigi Anywhere USBDigi Anywhere USBDigi PortServers TSDigi PortServers TSDigi PortServers TS (DEPRECATED)Digi PortServers TS (DEPRECATED)Digi SarianDigi SarianDockerDockerDocker SSHDocker SSHDynamics 365Dynamics 365Dynamics AX DatabaseDynamics AX DatabaseDynamics NSClientDynamics NSClientDynatrace Rest APIDynatrace Rest APIEES UPS SNMPEES UPS SNMPEMC CelerraEMC CelerraEMC ClariionEMC ClariionEMC Data Domain SNMPEMC Data Domain SNMPEMC IsilonEMC IsilonEMC RecoveryPointEMC RecoveryPointEMC Symmetrix APIEMC Symmetrix APIEMC Symmetrix NRPEEMC Symmetrix NRPEEMC Unisphere Rest APIEMC Unisphere Rest APIEMC VplexEMC VplexEMC XtremioEMC XtremioEaton ATS SNMPEaton ATS SNMPEaton PDU SNMPEaton PDU SNMPEclipse Mosquitto MQTTEclipse Mosquitto MQTTEfficient IPEfficient IPElasticsearchElasticsearchElasticsearch (Deprecated)Elasticsearch (Deprecated)Eltek eNexusEltek eNexusEmc PPMA Rest APIEmc PPMA Rest APIEmerson PDU SNMPEmerson PDU SNMPEnterasys SNMPEnterasys SNMPEricsson ENM APIEricsson ENM APIEthpoller APIEthpoller APIEvertz FC7800Evertz FC7800Exagrid SNMPExagrid SNMPExchange 2010Exchange 2010Exchange 2010 APIExchange 2010 APIExense Step REST APIExense Step REST APIExtreme (formerly Nortel/Avaya) SNMPExtreme (formerly Nortel/Avaya) SNMPExtreme Networks SNMPExtreme Networks SNMPF5 BigIPF5 BigIPF5OS SNMPF5OS SNMPFTP ServerFTP ServerFiberstore SNMPFiberstore SNMPFirebirdFirebirdForcepoint SNMPForcepoint SNMPFortinet FortiADC SNMPFortinet FortiADC SNMPFortinet FortiAuthenticator RestAPIFortinet FortiAuthenticator RestAPIFortinet FortiMail SNMPFortinet FortiMail SNMPFortinet FortiSwitch SNMPFortinet FortiSwitch SNMPFortinet FortiWeb SNMPFortinet FortiWeb SNMPFortinet Fortiauthenticator SNMPFortinet Fortiauthenticator SNMPFortinet Fortigate Rest APIFortinet Fortigate Rest APIFortinet Fortigate SNMPFortinet Fortigate SNMPFortinet Fortimanager SNMPFortinet Fortimanager SNMPFreeBSD SNMPFreeBSD SNMPFreeboxFreeboxFritz!Box UPnPFritz!Box UPnPFujitsu Eternus DXFujitsu Eternus DXFujitsu Server SNMPFujitsu Server SNMPGeist Sensor SNMPGeist Sensor SNMPGeneric SNMPGeneric SNMPGithubGithubGoogle CloudSQL MySQLGoogle CloudSQL MySQLGoogle Compute EngineGoogle Compute EngineGoogle GSuiteGoogle GSuiteGoogle StackdriverGoogle StackdriverGoogle StorageGoogle StorageGoogle WorkspaceGoogle WorkspaceGorgone Rest APIGorgone Rest APIGorgy NTP ServerGorgy NTP ServerGrafanaGrafanaGraylogGraylogGude EPC SNMPGude EPC SNMPH3C NetworkH3C NetworkHAProxy SNMPHAProxy SNMPHAProxy WebHAProxy WebHMS Ewon SNMPHMS Ewon SNMPHMS Netbiter Argos RestAPIHMS Netbiter Argos RestAPIHP 3PAR 7000HP 3PAR 7000HP 3PAR SSHHP 3PAR SSHHP Blade ChassisHP Blade ChassisHP EVAHP EVAHP Ilo Rest APIHP Ilo Rest APIHP Ilo XMLAPIHP Ilo XMLAPIHP LefthandHP LefthandHP MSA2000 SNMPHP MSA2000 SNMPHP MSLHP MSLHP Moonshot SNMPHP Moonshot SNMPHP OneView Rest APIHP OneView Rest APIHP P2000HP P2000HP Procurve SNMPHP Procurve SNMPHP ProliantHP ProliantHP Standard NetworkHP Standard NetworkHP StoreOnceHP StoreOnceHP StoreOnce 3.x Rest APIHP StoreOnce 3.x Rest APIHP StoreOnce 4.x Rest APIHP StoreOnce 4.x Rest APIHP StoreOnce SSHHP StoreOnce SSHHP UPS SNMPHP UPS SNMPHP Virtual ConnectHP Virtual ConnectHP-UXHP-UXHPE Alletra REST APIHPE Alletra REST APIHPE Athonet Alertmanager w/ PrometheusHPE Athonet Alertmanager w/ PrometheusHPE Athonet w/ Prometheus APIHPE Athonet w/ Prometheus APIHPE Primera REST APIHPE Primera REST APIHPE Simplivity Rest APIHPE Simplivity Rest APIHTTP ServerHTTP ServerHWg-STE SensorHWg-STE SensorHanwha camera SNMPHanwha camera SNMPHashiCorp Vault Rest APIHashiCorp Vault Rest APIHddtemp TCPHddtemp TCPHibernateHibernateHikvision NVR SNMPHikvision NVR SNMPHikvision camera SNMPHikvision camera SNMPHimoinsa UPSHimoinsa UPSHirschmann switchHirschmann switchHitachi E Series CMAHitachi E Series CMAHitachi HCP SNMPHitachi HCP SNMPHitachi NASHitachi NASHitachi StandardHitachi StandardHuawei HMMHuawei HMMHuawei OceanStor SNMPHuawei OceanStor SNMPHuawei Standard SNMPHuawei Standard SNMPHuawei WLC SNMPHuawei WLC SNMPHuawei iBMCHuawei iBMCHyper-V 2012Hyper-V 2012Hyper-V 2012 CMAHyper-V 2012 CMAHyper-V NSCP REST APIHyper-V NSCP REST APIHyperledger APIHyperledger APIIBM AS400IBM AS400IBM AS400 ConnectorIBM AS400 ConnectorIBM BladeCenterIBM BladeCenterIBM BladeCenter SwitchIBM BladeCenter SwitchIBM DS3000IBM DS3000IBM DS4000IBM DS4000IBM DS5000IBM DS5000IBM FlashSystem 900IBM FlashSystem 900IBM HMC SSHIBM HMC SSHIBM IMMIBM IMMIBM MQ MQIIBM MQ MQIIBM MQ Rest APIIBM MQ Rest APIIBM SoftlayerIBM SoftlayerIBM StorwizeIBM StorwizeIBM TS2900IBM TS2900IBM TS3100IBM TS3100IBM TS3200IBM TS3200IBM TS3500IBM TS3500IBM TSAMP SSHIBM TSAMP SSHIBM Tivoli Storage MIBM Tivoli Storage MIICS Rest APIIICS Rest APIIMAP ServerIMAP ServerIP Fabric APIIP Fabric APIIP-Label Datametrie Rest APIIP-Label Datametrie Rest APIIP-Label Ekara Rest APIIP-Label Ekara Rest APIIP-Label Newtest Rest APIIP-Label Newtest Rest APIInfluxDBInfluxDBInfoblox SNMPInfoblox SNMPInfor ION GridInfor ION GridInformix DBInformix DBInformix DB SNMPInformix DB SNMPInmatics PSU SputnikInmatics PSU SputnikJBoss ServerJBoss ServerJMX valueJMX valueJMeterJMeterJVM ActuatorJVM ActuatorJVM JMXJVM JMXJacarta SensorJacarta SensorJenkins APIJenkins APIJuniper EX SeriesJuniper EX SeriesJuniper GGSNJuniper GGSNJuniper ISGJuniper ISGJuniper M-SeriesJuniper M-SeriesJuniper M-Series NetconfJuniper M-Series NetconfJuniper MagJuniper MagJuniper SAJuniper SAJuniper SRXJuniper SRXJuniper SSGJuniper SSGJuniper TrapezeJuniper TrapezeKadiska Rest APIKadiska Rest APIKafkaKafkaKairos SNMPKairos SNMPKaminario RestAPIKaminario RestAPIKasperskyKasperskyKeepalived SNMPKeepalived SNMPKemp LoadbalancerKemp LoadbalancerKeysight NVOS Rest APIKeysight NVOS Rest APIKubernetes APIKubernetes APIKubernetes w/ PrometheusKubernetes w/ PrometheusLDAP ServerLDAP ServerLM SensorsLM SensorsLatenceTech RestAPILatenceTech RestAPILenovo Flexsystem SwitchLenovo Flexsystem SwitchLenovo IomegaLenovo IomegaLenovo RackSwitch SNMPLenovo RackSwitch SNMPLenovo S Series SNMPLenovo S Series SNMPLenovo XCC SNMPLenovo XCC SNMPLibraesva SNMPLibraesva SNMPLinux CMALinux CMALinux Libvirt CMALinux Libvirt CMALinux Libvirt SSHLinux Libvirt SSHLinux NRPELinux NRPELinux NRPE3Linux NRPE3Linux NRPE4Linux NRPE4Linux SNMPLinux SNMPLinux SNMP v3Linux SNMP v3Linux SSHLinux SSHLinux Telegraf AgentLinux Telegraf AgentLoggly Rest APILoggly Rest APILync 2013Lync 2013MGE UPS SystemMGE UPS SystemMS BiztalkMS BiztalkMac SNMPMac SNMPMaltem Insight Performance Rest APIMaltem Insight Performance Rest APIMasterclock NTP100GPMasterclock NTP100GPMcAfee Web Gateway SNMPMcAfee Web Gateway SNMPMeru Networks SNMPMeru Networks SNMPMessPC Ehternetbox SNMPMessPC Ehternetbox SNMPMicrosens G6 SNMPMicrosens G6 SNMPMicrosoft Cluster Server CMAMicrosoft Cluster Server CMAMicrosoft Cluster Server NSClient++ NRPEMicrosoft Cluster Server NSClient++ NRPEMicrosoft DHCP SNMPMicrosoft DHCP SNMPMicrosoft Exchange CMAMicrosoft Exchange CMAMicrosoft Exchange NSClient NRPEMicrosoft Exchange NSClient NRPEMicrosoft Exchange NSClient RestAPIMicrosoft Exchange NSClient RestAPIMicrosoft IIS Server NRPEMicrosoft IIS Server NRPEMicrosoft IIS Server NSClient APIMicrosoft IIS Server NSClient APIMicrosoft IIS Server RestapiMicrosoft IIS Server RestapiMicrosoft IIS Server WSMANMicrosoft IIS Server WSMANMicrosoft SCCM CMAMicrosoft SCCM CMAMicrosoft SCCM NSClientMicrosoft SCCM NSClientMicrosoft SQL ServerMicrosoft SQL ServerMicrosoft WSUSMicrosoft WSUSMicrosoft WSUS CMAMicrosoft WSUS CMAMikrotik SNMPMikrotik SNMPMitel 3300ICPMitel 3300ICPMobotix CameraMobotix CameraModbusModbusMongoDBMongoDBMoxa Switch SNMPMoxa Switch SNMPMrv OptiswitchMrv OptiswitchMulesoft AnypointMulesoft AnypointMySQL/MariaDBMySQL/MariaDBNTP ServerNTP ServerNVIDIA GPU SMI SSHNVIDIA GPU SMI SSHNetASQ NetworkNetASQ NetworkNetAppNetAppNetApp Ontap OnCommand APINetApp Ontap OnCommand APINetApp Ontap Rest APINetApp Ontap Rest APINetApp Ontap SNMPNetApp Ontap SNMPNetApp RestapiNetApp RestapiNetApp Santricity RestapiNetApp Santricity RestapiNetbackup NSClient++ APINetbackup NSClient++ APINetbackup SSHNetbackup SSHNetbotz SensorNetbotz SensorNetdata RestAPINetdata RestAPINetgear MSeriesNetgear MSeriesNetgear Readynas SNMPNetgear Readynas SNMPNetgear SSeries SNMPNetgear SSeries SNMPNetscaler MPX 8000Netscaler MPX 8000Nginx PlusNginx PlusNginx Plus (legacy)Nginx Plus (legacy)Nginx ServerNginx ServerNimble StorageNimble StorageNimble Storage Rest APINimble Storage Rest APINitram UPS SNMPNitram UPS SNMPNmap CLINmap CLINode Exporter Linux MetricsNode Exporter Linux MetricsNode Exporter Windows MetricsNode Exporter Windows MetricsNode Exporter w/ Prometheus APINode Exporter w/ Prometheus APINokia Isam SNMPNokia Isam SNMPNokia TiMos SNMPNokia TiMos SNMPNtopNG RestAPINtopNG RestAPINutanixNutanixNvidia (formerly Mellanox) SNMPNvidia (formerly Mellanox) SNMPOSPF ProtocolOSPF ProtocolOVHOVHOffice 365 Azure ADOffice 365 Azure ADOffice 365 ManagementOffice 365 ManagementOffice365 ExchangeOffice365 ExchangeOffice365 OneDriveOffice365 OneDriveOffice365 SharePointOffice365 SharePointOffice365 SkypeOffice365 SkypeOffice365 TeamsOffice365 TeamsOmniswitch 6850Omniswitch 6850OneAccess SNMPOneAccess SNMPOpenHeadendOpenHeadendOpenLDAPOpenLDAPOpenMetricsOpenMetricsOpenStack RESTAPIOpenStack RESTAPIOpenVPN OMIOpenVPN OMIOpenWeatherMapOpenWeatherMapOpengear SNMPOpengear SNMPOptelecom camera SNMPOptelecom camera SNMPOracle DatabaseOracle DatabaseOracle GoldenGate SSHOracle GoldenGate SSHOracle InfinibandOracle InfinibandOracle UCP JMXOracle UCP JMXOracle VM Manager APIOracle VM Manager APIOracle ZFSOracle ZFSOracle ZS Rest APIOracle ZS Rest APIOracle ZS SNMPOracle ZS SNMPOutscaleOutscaleOverland NeoOverland NeoPHP APCPHP APCPHP FPMPHP FPMPICOS SNMPPICOS SNMPPOP ServerPOP ServerPVXPVXPacemakerPacemakerPalo Alto firewall APIPalo Alto firewall APIPalo Alto firewall SNMPPalo Alto firewall SNMPPalo Alto firewall SSHPalo Alto firewall SSHPanzura SNMPPanzura SNMPParity APIParity APIPatton SmartNode SNMPPatton SmartNode SNMPPeoplesoftPeoplesoftPeplink BalancePeplink BalancePeplink Pepwave SNMPPeplink Pepwave SNMPPerle IDS SNMPPerle IDS SNMPPexip Infinity ManagementAPIPexip Infinity ManagementAPIPhoenixtec UPS SNMPPhoenixtec UPS SNMPPineApp Mail SecurePineApp Mail SecurePodman REST APIPodman REST APIPolycom DMA SNMPPolycom DMA SNMPPolycom GroupSeries SNMPPolycom GroupSeries SNMPPolycom HDX SNMPPolycom HDX SNMPPolycom RMXPolycom RMXPolycom RPRM SNMPPolycom RPRM SNMPPolycom Trio Rest APIPolycom Trio Rest APIPostgreSQLPostgreSQLPowerware UPSPowerware UPSPrinter standardPrinter standardPrometheus Alertmanager APIPrometheus Alertmanager APIPrometheus ServerPrometheus ServerProtocol CIFSProtocol CIFSProtocol DHCPProtocol DHCPProtocol SFTPProtocol SFTPProtocol SSHProtocol SSHProtocol TCPProtocol TCPProtocol UDPProtocol UDPProtocol WHOISProtocol WHOISProxmox Mail Gateway APIProxmox Mail Gateway APIProxmox VEProxmox VEPure Storage FlashArray Legacy Rest APIPure Storage FlashArray Legacy Rest APIPure Storage FlashArray Rest API v2Pure Storage FlashArray Rest API v2Pure Storage FlashBlade Rest API v2Pure Storage FlashBlade Rest API v2Pure Storage RestAPIPure Storage RestAPIPure Storage SNMPPure Storage SNMPQSAN NASQSAN NASQnapQnapQuadstorQuadstorQuanta Rest APIQuanta Rest APIQuantum DXi SeriesQuantum DXi SeriesQuantum ScalarQuantum ScalarRRDcachedRRDcachedRRDtoolRRDtoolRabbitMQ RestAPIRabbitMQ RestAPIRad Airmux SNMPRad Airmux SNMPRadius ServiceRadius ServiceRadware AlteonRadware AlteonRaisecomRaisecomRapid Recovery SNMPRapid Recovery SNMPRaritan PDURaritan PDURedBack RouterRedBack RouterRedis CliRedis CliRedis DatabaseRedis DatabaseRedis Labs Enterprise Cluster Rest APIRedis Labs Enterprise Cluster Rest APIRedis RestapiRedis RestapiRedis SentinelRedis SentinelRiello UPS SNMPRiello UPS SNMPRittal CMC3 SNMPRittal CMC3 SNMPRiverbed InterceptorRiverbed InterceptorRiverbed SteelHeadRiverbed SteelHeadRubrik Rest APIRubrik Rest APIRubrik Security Cloud GraphQL APIRubrik Security Cloud GraphQL APIRuckusRuckusRuckus ICX SNMPRuckus ICX SNMPRuckus SCGRuckus SCGRuckus SmartzoneRuckus SmartzoneRuckus ZonedirectorRuckus ZonedirectorRuckus ZonedirectoreRuckus ZonedirectoreRudderRudderRuggedcom NetworkRuggedcom NetworkSAP HANASAP HANASCOM Rest APISCOM Rest APISMTP ServerSMTP ServerSafenet KeysecureSafenet KeysecureSahi Pro Rest APISahi Pro Rest APISailPoint IdentityNow Rest APISailPoint IdentityNow Rest APISalesforceSalesforceSchleifenbauer Gateway SNMPSchleifenbauer Gateway SNMPSecuractive SNMPSecuractive SNMPSeleniumSeleniumSendmailSendmailSensor IPSensor IPSensorGatewaySensorGatewaySensormetrixSensormetrixSilverpeakSilverpeakSkyhigh Web Gateway SNMPSkyhigh Web Gateway SNMPSkype 2015Skype 2015SlackSlackSmarterMail ServerSmarterMail ServerSocomec Net Vision UPS SNMPSocomec Net Vision UPS SNMPSolaris SNMPSolaris SNMPSolrSolrSonicwallSonicwallSonus SBCSonus SBCSophos ESSophos ESSpeedtestSpeedtestSplunk APISplunk APISquid SNMPSquid SNMPStonesoftStonesoftStoragetek SLStoragetek SLStormshield APIStormshield APIStormshield SNMPStormshield SNMPStormshield SSHStormshield SSHSun MgmtCardSun MgmtCardSun MseriesSun MseriesSun SFxxKSun SFxxKSupermicroSupermicroSupermicro BMC SNMPSupermicro BMC SNMPSupermicro SuperDoctor SNMPSupermicro SuperDoctor SNMPSybaseSybaseSymantec NetbackupSymantec NetbackupSymbol WiNG SNMPSymbol WiNG SNMPSynologySynologyTFTP ServerTFTP ServerTP-Link SNMPTP-Link SNMPTalend TMC APITalend TMC APITeldat Edge Routers SNMPTeldat Edge Routers SNMPTelnet ScenarioTelnet ScenarioTeltonika SNMPTeltonika SNMPThales Mistral VS9 Rest APIThales Mistral VS9 Rest APITimelinkmicro Tms6001Timelinkmicro Tms6001Tomcat JMXTomcat JMXTomcat WebmanagerTomcat WebmanagerTosca Rest APITosca Rest APITraffic DirectorTraffic DirectorTrendMicro Iwsva SNMPTrendMicro Iwsva SNMPUPS StandardUPS StandardUbiquiti AirFiber SNMPUbiquiti AirFiber SNMPUbiquiti Edge SNMPUbiquiti Edge SNMPUbiquiti UniFi SNMPUbiquiti UniFi SNMPUcopiaUcopiaVMware ESXVMware ESXVMware ESX WS-MANVMware ESX WS-MANVMware VCSA Rest APIVMware VCSA Rest APIVMware VCSA SNMPVMware VCSA SNMPVMware VMVMware VMVMware VeloCloudVMware VeloCloudVMware vCenterVMware vCenterVMware vCenter v4VMware vCenter v4VMware vCenter v5VMware vCenter v5VMware vCenter v6VMware vCenter v6VMware8 ESX REST APIVMware8 ESX REST APIVMware8 VCSA REST APIVMware8 VCSA REST APIVMware8 VM REST APIVMware8 VM REST APIVMware8 vCenter REST APIVMware8 vCenter REST APIVTOM Rest APIVTOM Rest APIVarnish NRPEVarnish NRPEVectra Rest APIVectra Rest APIVeeam Backup Enterprise Manager Rest APIVeeam Backup Enterprise Manager Rest APIVeeam CMAVeeam CMAVeeam NRPEVeeam NRPEVeeam NSClient APIVeeam NSClient APIVeeam ONE Rest APIVeeam ONE Rest APIVeeam WSMANVeeam WSMANVeritas Backup Exec NSCP APIVeritas Backup Exec NSCP APIVerne MQ RestAPIVerne MQ RestAPIVersa Director RestapiVersa Director RestapiVersa SNMPVersa SNMPViolin Memory 3000Violin Memory 3000Viptela SNMPViptela SNMPWD NAS SNMPWD NAS SNMPWallix Bastion SNMPWallix Bastion SNMPWarp10 SensisionWarp10 SensisionWatchguardWatchguardWazuh Rest APIWazuh Rest APIWeblogic ServerWeblogic ServerWestermo Standard SNMPWestermo Standard SNMPWindows CMAWindows CMAWindows NRPEWindows NRPEWindows NSClient 0.5 NRPEWindows NSClient 0.5 NRPEWindows NSClient APIWindows NSClient APIWindows SNMPWindows SNMPWindows Telegraf AgentWindows Telegraf AgentWindows WSMANWindows WSMANX509 CertificateX509 CertificateXiVO VoIP ServerXiVO VoIP ServerZIXIZIXIZookeeperZookeeperZscaler ZDX ApiZscaler ZDX ApiZyxelZyxelcAdvisorcAdvisorcAdvisor APIcAdvisor APIpfSense FauxapipfSense FauxapipfSense SNMPpfSense SNMPxFusion iBMC SNMPxFusion iBMC SNMP
Browse the full catalog →

Plug Centreon into your enterprise stack

Your monitoring data is worth more when it flows: open tickets in your ITSM, stream events and metrics to your SIEM, data lake or on-call platform, and make Centreon the beating heart of your enterprise observability stack.

Open Tickets: ITSM integrations

The Open Tickets module opens and closes tickets in your ITSM tool straight from the Centreon console. Providers shipped with the module:

Click an integration to see its details, documentation and download.

Stream Connectors: real-time data streaming

Built on the Broker BBDO stream and a powerful Lua framework, Stream Connectors filter, enrich and forward your events and metrics in real time to the platforms your teams already use. Fine-grained filtering (event type, status, host groups, custom rules), payload transformation, several destinations in parallel: everything you need to build an enterprise-grade observability pipeline.

Click a connector to see its details, documentation and download.

Notification plugins: alerts where your teams live

The Centreon notification engine (contacts, time periods, escalations) pushes your alerts to the channels your teams already use: Microsoft Teams, Slack, Telegram, rich email, SMS gateways, mobile push. The right message, in the right place, at the right time.

Click a plugin to see its details, documentation and download.

📖 Notifications documentation

Need a tailor-made integration?

A specific stream connector? An integration that fits your in-house tooling like a glove? Where the biggest players on the market lock you into their catalog, Centreon opens its own: documented Lua framework, open source providers, full APIs. Centreon can be customized far beyond what closed platforms allow, and open source hands it to you on a platter. Take advantage of it.

Centreon MCP ServerBeta

Supervise Centreon from your AI assistant: the MCP server exposes real-time monitoring as tools for any Model Context Protocol client (Claude, IDEs, agents). It reads live status and acknowledges alerts; it does not change your configuration.

What your assistant can do

Real-time status

Query live host and service states, with counters per state.

Alert acknowledgement

Acknowledge a host or service problem with a comment, straight from the assistant.

Rich search filters

Same logical filters as the Centreon API ($and, $or, regex) to target exactly the right resources.

Works with the major AI platforms

Claude (Desktop, Code)ChatGPT / OpenAIGoogle GeminiMicrosoft CopilotMistral Le ChatCursorVS Code

MCP is an open standard: any Model Context Protocol compatible client can connect to this server.

Prerequisites

  • Python 3.13+ (or Docker)
  • A Centreon instance reachable from the MCP server
  • A personal API token (Configuration > Users > API tokens)

Deploy the server

git clone https://github.com/CentreonLabs/centreon-mcp.git
cd centreon-mcp
# .env: CENTREON_BASE_URL, CENTREON_API_TOKEN, MCP_API_KEY, NGROK_AUTHTOKEN
docker compose up --build
# -> MCP server on :8000, ngrok tunnel, web UI on :4040
git clone https://github.com/CentreonLabs/centreon-mcp.git
cd centreon-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e .
# .env: CENTREON_BASE_URL, CENTREON_API_TOKEN, MCP_API_KEY
fastmcp run centreon_mcp/main.py
git clone https://github.com/CentreonLabs/centreon-mcp.git
cd centreon-mcp
uv sync --all-groups
# .env: CENTREON_BASE_URL, CENTREON_API_TOKEN, MCP_API_KEY
uv run fastmcp run centreon_mcp/main.py

Environment variables (.env)

CENTREON_BASE_URL*Centreon server URL (without /api/latest)
CENTREON_API_TOKEN*Personal API token (Configuration > Users > API tokens)
MCP_API_KEY*Bearer token clients must send to the MCP server
CENTREON_VERIFY_SSLSSL certificate verification (default: true)
CENTREON_CA_BUNDLEPath to a custom CA bundle (internal PKI)
NGROK_AUTHTOKENngrok token (compose.yaml deployment only)

* required variable

Connect your MCP client

Point your MCP client (Claude Desktop, IDE, agent...) to the server URL with the Authorization header:

{
  "mcpServers": {
    "centreon": {
      "url": "https://your-mcp-host:8000/mcp",
      "headers": { "Authorization": "Bearer your-mcp-api-key" }
    }
  }
}

Available tools

  • get_realtime_status (live status of a host or service)
  • list_all_status (states overview with counters, regex filters)
  • acknowledge_resource (acknowledge a problem with a comment)

Beta: tools and interfaces may change without notice. Feedback is welcome on the GitHub repository.

Free modules & widgets

Open-source add-ons to install on an existing platform.

Choose a version to list its files, then a component to narrow it down.

Experience Monitoring

Monitor the real user experience.

End-to-end visibility on the performance and availability of your applications and digital journeys, measured from the user's perspective.

Real & synthetic

Combine real-user monitoring with synthetic checks of critical paths.

App performance

Web, API and transaction timings, errors and availability.

Business impact

Tie digital experience to SLAs and business outcomes.

Start your free trial

Your free trial gives you full access to Experience Monitoring: real-user and synthetic monitoring, application performance tracking, and dashboards that link digital experience to business impact. No credit card required. Fill in the form and our team activates your environment.

Log Management

Deploy log monitoring with OTLP templates.

Ready-to-use OpenTelemetry (OTLP) templates and collector configurations to roll out log management at your clients in minutes.

Templates are maintained in Git: clone or copy the collector config that matches your source.

Browse templates on GitHub →

Improve your digital experience

Deploy your log management projects

Contact