
de.codecentric.boot.admin.server.notify.AbstractStatusChangeNotifier Maven / Gradle / Ivy
/*
* Copyright 2014-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.codecentric.boot.admin.server.notify;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import reactor.core.publisher.Mono;
import de.codecentric.boot.admin.server.domain.entities.Instance;
import de.codecentric.boot.admin.server.domain.entities.InstanceRepository;
import de.codecentric.boot.admin.server.domain.events.InstanceDeregisteredEvent;
import de.codecentric.boot.admin.server.domain.events.InstanceEvent;
import de.codecentric.boot.admin.server.domain.events.InstanceStatusChangedEvent;
import de.codecentric.boot.admin.server.domain.values.InstanceId;
/**
* Abstract Notifier for status change which allows filtering of certain status changes.
*
* @author Johannes Edmeier
*/
public abstract class AbstractStatusChangeNotifier extends AbstractEventNotifier {
private final Map lastStatuses = new HashMap<>();
/**
* List of changes to ignore. Must be in Format OLD:NEW, for any status use * as
* wildcard, e.g. *:UP or OFFLINE:*
*/
private String[] ignoreChanges = { "UNKNOWN:UP" };
public AbstractStatusChangeNotifier(InstanceRepository repository) {
super(repository);
}
@Override
public Mono notify(InstanceEvent event) {
return super.notify(event).then(Mono.fromRunnable(() -> updateLastStatus(event)));
}
@Override
protected boolean shouldNotify(InstanceEvent event, Instance instance) {
if (event instanceof InstanceStatusChangedEvent) {
InstanceStatusChangedEvent statusChange = (InstanceStatusChangedEvent) event;
String from = getLastStatus(event.getInstance());
String to = statusChange.getStatusInfo().getStatus();
return Arrays.binarySearch(ignoreChanges, from + ":" + to) < 0
&& Arrays.binarySearch(ignoreChanges, "*:" + to) < 0
&& Arrays.binarySearch(ignoreChanges, from + ":*") < 0;
}
return false;
}
protected final String getLastStatus(InstanceId instanceId) {
return lastStatuses.getOrDefault(instanceId, "UNKNOWN");
}
protected void updateLastStatus(InstanceEvent event) {
if (event instanceof InstanceDeregisteredEvent) {
lastStatuses.remove(event.getInstance());
}
if (event instanceof InstanceStatusChangedEvent) {
lastStatuses.put(event.getInstance(), ((InstanceStatusChangedEvent) event).getStatusInfo().getStatus());
}
}
public void setIgnoreChanges(String[] ignoreChanges) {
String[] copy = Arrays.copyOf(ignoreChanges, ignoreChanges.length);
Arrays.sort(copy);
this.ignoreChanges = copy;
}
public String[] getIgnoreChanges() {
return ignoreChanges;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy