Stream Connectors Release – July 2026
Learn more about the Centreon Infra Monitoring.
Recently active
Hi,Following a disk crash, I no longer have any data in my graph.Do you have an idea to solve the problem?Advance thank
Hello,After removing poller from my Centreon 21.10.17 i still have 3 hosts related to deleted poller.I deleted them from hosts but they are still visible on status pages.Do You have any idea how to delete those hosts ?
Hello,We monitor our Centreon database with centreon mysql plugin and we have a lot of slow queries like this :SELECT SQL_CALC_FOUND_ROWS DISTINCT resources.resource_id, resources.name, resources.alias, resources.address, resources.id, resources.internal_id, resources.parent_id, resources.parent_name, parent_resource.status AS `parent_status`, parent_resource.alias AS `parent_alias`, parent_resource.status_ordered AS `parent_status_ordered`, parent_resource.address AS `parent_fqdn`, severities.id AS `severity_id`, severities.level AS `severity_level`, severities.name AS `severity_name`, severities.type AS `severity_type`, severities.icon_id AS `severity_icon_id`, resources.type, resources.status, resources.status_ordered, resources.status_confirmed,
Hello all, I am looking for an easy way to monitor windows reboot.I tried to use the uptime template but I don’t know what value I have to put to major any reboot (like one second), I tried to put 1: as critical value but it doesn’t work.Help please thx
I used SNMP trap to monitor the status of switch interface and I observed weird behavior of SNMP trap notification. When the last SNMP trap was in OK state then the next OK state event for another interface was never triggered the alert. I saw that the SNMP trap message output was changed on Centreon monitoring portal but alert was not sent. Please help to advise me what could be the issue. Thanks so much!
Hi,After an upgrade from 22.10.11 to 22.10.15 I can see all the status duration for problems that roughly equal the time since I made the upgrade, not the time the status present.Is it something unavoidable, or is it a new bug? I never noticed this before.Also, a more general question: the old page has both “duration” and “hard duration”. Which one is the unique “duration” on the new page ? Why there aren’t both present anymore?
Hi,We use the standard centreon Plugin ‘centreon_nsclient_restapi.pl ‘ (From centreon-plugin-Operatingsystems-Windows-Restapi-20230912-083720.el8.noarch)… to run multiple scripts on our remote servers.One of the script (powershell) reads and reports some log file content …. It is executed on a Windows 2019 serveur (The standard encoding on the powershell is UTF-8). The log file is a standard .txt file: If the logs files contains a line like :“ven. 2023-12-01 10:50:04 ERROR Export_LyncCtrlDeviations Nombre d'erreurs à vérifier”The result is : UNKNOWN: Cannot decode json response: malformed UTF-8 character in JSON string, at character offset 191 (before "\x{fffd}0080\x{fffd}...") at /usr/lib/centreon/plugins/centreon_nsclient_restapi.pl line 162. The debug mode shows that It receives the string : ‘à vérifier’, like : ▒\u0080▒ v▒\u0080\u009Arifier If I just remove the accented characters fron the file…. the plugins works well.“ven. 2023-12-01 10:50:04 ERROR Export_Lync
I’ve installed Centreon and configured my first Linux hostping wasn’t working until I installed monitoring-plugins-basicis it right? shouldn't it have been installed during the centreon installation?PS how I change the question title? I was wrong to write it
Hello everyone!I’ve recently started translating the Centreon project into the german language. As I’m sure that there’ll be quite a few questions that’ll come up in the process, I am creating this topic.In this topic, I’ll briefly describe the process of how I’m approaching the translation. Additionally, I will describe problems or questions that I’ve encountered. ApproachMy approach is relatively simple to summarize: So far, I’ve simply followed the dev guide on how to translate the Centreon project. I’m currently using POEdit for the translation. ProblemsThis section summarizes problems I’ve encountered during the translation process. Let’s hope that this section stays small in size :PThe link to the translation environment archive in the documentation no longer seems to work. Kriko kindly provided me a working link. QuestionsThis section lists questions that I had/have while translating. I hope the “Conversation” topic type is still correct.Should brand or component names be transl
HelloI've been trying since yesterday to upgrade my centreon version to 23.10, under debian 11, but I'm getting hash errors like this:root@CentreonDeb:~# apt upgrade centreon --fix-missingLecture des listes de paquets... FaitConstruction de l'arbre des dépendances... FaitLecture des informations d'état... FaitCalcul de la mise à jour... FaitLes paquets suivants ont été installés automatiquement et ne sont plus nécessaires : monitoring-plugins-basic monitoring-plugins-commonVeuillez utiliser « apt autoremove » pour les supprimer.Les paquets suivants seront ENLEVÉS : centreon-broker-storage centreon-engine-extcommandsLes NOUVEAUX paquets suivants seront installés : centreon-broker-cbd centreon-engine-daemon centreon-license-manager-common libzmq-libzmq4-perl linux-image-5.10.0-26-amd64 lua5.3Les paquets suivants seront mis à jour : centreon centreon-auto-discovery-server centreon-broker centreon-broker-cbmod centreon-broker-core centreon-central centreon-clib centreon-common centreo
Hi All,Anyone encountering this output on centreon, everytime WSMAN renew ticket, CPU usage on centreon perfmon peaks out and then normalize again, Which messed up the utilization of that server. Appreciate your response.
Hello,I have a strange behavior, I have a script that was working well since months on my clients, now I simply add an echo in a file within the script to confirm and realize that script is not launched at all.When i take the command executed (the one displayed in console) and launch it as user centreon-engine directly in poller’s terminal, script is launched and the echo works…I’m currently wondering what I miss.Thx for your help.
"Hello,I am working on generating KPIs on our Centreon platform (prod and dev) using the Centreon API. My goal is to retrieve the list of host groups with their associated hosts, both enabled and disabled.I have followed the documentation provided here: link to documentation. However, I am facing difficulties. I am working with Centreon 22.04.7.Is it possible to achieve this operation with API v1? I have successfully followed the steps in the documentation to generate a token; however, retrieving the list of host groups is not working as expected.Below is an excerpt of the Python script I used to generate the token,If you have any advice or guidance on how to obtain the list of host groups with their associated hosts, I would appreciate your assistance.Thank you,
How do you manage to create host template with clapi command ?
Dear Centreon Community members, I'm struggling with the centreon API usage for a specific task: "setting a downtime" 1. I'm able to use the basic auth to get a token1. use this token to do several API calls like checking the API version, get host id, etc.1. BUT when I try to set a downtime for a specific host it does work and I received a 403 ; *(For test purpose the user as received admin privileges)* To give you more details and to let you preproduce the issue I encountered, please find some curl commands below: - get host information: OK```bash curl -k -H "Content-Type: application/json" -H "centreon-auth-token: XXXXXXXXXXXXXX" -X GET "https://centreon.srv.domain/centreon/api/index.php?object=centreon_realtime_hosts&action=list&search=myserver03&fields=id,name,alias,address"``` - answer received:```javascript[{"id":2348,"name":"MYERVER03","alias":"MYERVER03","address":"1.222.111.23"}]``` 2. set a downtime: NOK```javascriptcurl -k -H "Content-Type: application/json" -
Hi everyone,I wanted to present to you a Centreon module we developed to add a cybersecurity layer on Centreon, named CentSocCentSoc uses the Wazuh Manager API to display the scan results provided by the Wazuh Agents on the Centreon UIYou can use it if you have a Wazuh installed on your environment, and if you want to test it, you can just install the Wazuh Manager (Wazuh Dashboard and Indexer not mandatory)You just have to link a Wazuh agent to a Centreon Host with a simple macro and CentSoc will display several informations, like vulnerabilities, conformity scans results and file integrityThis module will be open-source (we didn't post source yet) We will do a demo on LinkedIn the July 7 here (in french)Don't hesitate to come take a look 😀
Hello, Package Linux SNMP for OS-SNMP-Custom not found on Debian 11 23.04.8 : https://docs.centreon.com/fr/pp/integrations/plugin-packs/procedures/operatingsystems-linux-snmp/
on OS RHEL 8.5Is it possible to deal with VM which have 2 networks interfaces with a default gateway route for each of them ?how build my probe to with 2 network interfaces with each a default route defined ?nota: the /etc/sysctl.conf is set with rp_filter=2
Bonjour à Tous ! 😊 Ceci est ma première question sur ce forum, n’hésitez pas à me dire s’il manque des infos.Je cherche à effectuer l’action suivante, mais via Rest API : Il faut que l’hôte réactualise les services liés aux modèles nouvellement attribués.Mais je ne trouve rien dans les documentations Centreon concertant cette option Rest API.(Une déclaration supplémentaire serait à ajouter dans la partie « body » de la requête Rest API ?)Merci pour vos retours.Bonne journées à Tous !
Bonjour,j’essaye d’installer centreon 23.04 sur une oracle linux 8J’utilise ce script :https://raw.githubusercontent.com/centreon/centreon/23.04.x/centreon/unattended.shmais j’ai un plantage avec cette erreur :2023-10-24 05:03:09-04:00 - INFO - Centreon official repositories installation...main: ligne 641: config-manager : commande introuvableEst ce que quelqu’un aurait une idée ?Merci
i’ve strange issue.i noticed i have many services with same service_id on database. if i clear database, those can recreated with same service_id from services.cfg after export. How or where can i clean it?
Hi Team, Good Day. One of our clients use MySQL database for storing Centreon related data. We tried to get exact tables where Centreon monitoring data like CPU, Memory, Disk space of host servers are stored into MySQL database but not found any clues. Can anyone please share the links / documentation having these useful tables information? Thank you.
After the installation, I try to secure the platform but by following the documentation, I'm blocked at the Selinux installation level because I can't find the Centreon-plugin-selinux package. Can you help me?Note: I use Centreon 23.10
Hello, I recently tried to upgrade my Centreon from CentOS to an AlmaLinux OVF provided on the Centreon website. But without success, after a discussion with my manager we agreed to start again from scratch our centreon because it would be much cleaner and efficient to start again on healthy bases.My question is, do you know a way to start from scratch with an existing Centreon? Some kind of way to erase my database and have a blank one as if I were starting Centreon.I currently have access to my web interface, I use mysql, my almalinux is in version 8.8. Thanks a lot!
Hi, i followed the documentation to migrate my centreon from centos 7 to debian 11. When I log in to the new centreon with the default admin account, I get stuck on that error :I usually log in with LDAP user which is already configured, but got the same error. The error logs below are the same wether I log in with the local admin account or with the LDAP user account. Reading /var/log/centreon/login.log, it seems like the authentication succeeded :2023-09-16 11:52:51|1|0|0|[local] [x.x.x.x] Authentication succeeded for 'admin' Reading /var/log/apache2/error.log, I get the following :[Sat Sep 16 11:52:45.063415 2023] [proxy_fcgi:error] [pid 61825] [client x.x.x.x:49339] AH01071: Got error 'PHP message: CRITICAL: You are not authorized to access this resource {"context":"[object] (Symfony\\\\Component\\\\Security\\\\Core\\\\Exception\\\\AccessDeniedException(code: 403): You are not authorized to access this resource at /usr/share/centreon/vendor/symfony/framework-bundle/Controller/Abs
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.