After decommissioning a SpectroSERVER (DSS) and removing it from the Spectrum environment and OneClick administration, the catalina.out logs on the Spectrum Report Manager (SRM) server continue to show "Stopping event poller" or "Stopping Event polling" messages for the removed landscape. The landscape is no longer visible in the OneClick console or the SRM Administration page, but background polling persists.
DX NetOps Spectrum: All versions.
catalina.out logs repeat the following messages:"Stopping event poller""Stopping Event polling"When a landscape is removed from the Spectrum environment, the corresponding entry in the SRM reporting database may still have the event_polling or device_polling flags set to active (1). The SRM service continues to initialize threads for any landscape in its database where these flags are enabled, even if the landscape is no longer in the main Spectrum landscape map.
To stop the SRM from polling the decommissioned landscape, manually disable the polling flags in the SRM reporting database:
cd $SPECROOT/mysql/bin./mysql --defaults-file=../my-spectrum.cnf -uroot -p[password] reportinglandscape_h) and current polling status: SELECT landscape_h, domain_name, event_polling, device_polling FROM landscape;0. Replace 0xXXXXXX with the actual landscape handle: UPDATE landscape SET event_polling = 0, device_polling = 0 WHERE landscape_h = 0xXXXXXX;SELECT landscape_h, domain_name, event_polling, device_polling FROM landscape WHERE landscape_h = 0xXXXXXX;exit to quit MySQL.