A system property is available to ignore disconnected child servers and force object purge on the federation master (default is false).
To enable, run the following script from the Foglight Script Console (Running a groovy script using the script console (4309796)):
System.setProperty("foglight.federation.force_purge", "true")
Note: Once enabled, wait for a new "Major refresh start" message in the Management Server logs before validating if objects are being removed.
It is recommended to use this option only for cleanup purposes rather than enabling it permanently. Otherwise, whenever a child server loses connectivity, the subsequent topology synchronization will initiate an unintended purge. To disable it, set the property value back to false:
System.setProperty("foglight.federation.force_purge", "false")
Note: The property value will also revert back to the default false value if the Federator is restarted.