// Do not test if the device is running, it is overload the database
DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(scanServerName, false);
if (proxy != null) {
try {
DevState devState = proxy.state();
state = StateUtilities.getNameForState(devState);
} catch (DevFailed devFailed) {
LOGGER.error("Cannot execute {}/State {}", scanServerName, DevFailedUtils.toString(devFailed));
LOGGER.debug("Stack trace", devFailed);
} catch (Exception e) {