Hello,
After comparing with the 24.10 files, it seems the problem come from the centreon_performance_service.class.php file
Can you backup the file /usr/share/centreon/www/api/class/centreon_performance_service.class.php
cp /usr/share/centreon/www/api/class/centreon_performance_service.class.php /usr/share/centreon/www/api/class/centreon_performance_service.class.php.backup
And then edit the same file
At line ~45 change the function __construct() like this
public function __construct()
{
parent::__construct();
$this->pearDBMonitoring = new CentreonDB('centstorage');
}
only the line parent::__construct(); is missing. Just add it befor the $this
Then reload your performance graph page and try the filter
If it doesn’t works, rollback with the backup file
Hope it helps