Skip to main content

Prerequisites

OS​

The poller must be installed on a dedicated fresh Alma Linux/RHEL/Oracle Linux 8 or 9, or Debian 11 server.

Hardware​

The host machine must have at least the following characteristics:

  • To handle testing or small environments (up to 2000 services with checks every 5 minutes, or up to 500 services with checks every minute):
ElementValue
CPU (logical core at 3 GHz)2 vCPU
RAM2 GB
HDD40 GB
  • To handle production environments (up to 7000 services with checks every 5 minutes):
ElementValue
CPU (logical core at 3 GHz)4 vCPU
RAM4 GB
HDD40 GB

A poller can monitor around 7000 active services. vCPU must have a frequency of approximately 3 GHz. The number of vCPU depends on the complexity of the checks. If you use connectors or perform a large number of system/third-party binary calls, you should add more vCPU.

It is recommended that you partition the poller's disk to prevent it from becoming full and unusable (for instance, in case of retention issues). Perform the partitioning following these recommendations:

File systemSize
swap1 to 1.5 total size of RAM space
/at least 20 GB
/var/logat least 10 GB
/var/lib/centreon-brokerat least 5 GB

Network​

DescriptionDirectionProtocolIPPort
INTERNETOutboundHTTPS*443
NTP (optional)OutboundUDPTBA123
SourceDestinationPort/ProtocolMonitoring protocol
Centreon serversDevices to monitor80/443 TCPAPI
Centreon serversDatabase to monitor3306/1521/1433 TCPMySQL/Oracle/MSSQL

Allowing traffic to/from AWS IP ranges​

If you are filtering flows based on IP addresses, authorize the AWS IP ranges your poller needs to interact with.

AWS provides a list of their IP ranges. You can retrieve the list of IP addresses you want using a curl command. Example for AWS Ireland with the EC2 service for IPV6 and IPV4:

curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | jq -r '.ipv6_prefixes[] | select(.region == "eu-west-1") | select(.service == "EC2") | .ipv6_prefix' 
curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | jq -r '.prefixes[] | select(.region == "eu-west-1") | select(.service == "EC2") | .ip_prefix'