org.graylog2.periodical.ESVersionCheckPeriodical Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.periodical;
import org.graylog2.configuration.IndexerHosts;
import org.graylog2.notifications.Notification;
import org.graylog2.notifications.NotificationService;
import org.graylog2.plugin.periodical.Periodical;
import org.graylog2.storage.DetectedSearchVersion;
import org.graylog2.storage.SearchVersion;
import org.graylog2.storage.versionprobe.VersionProbe;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.Nullable;
import javax.inject.Inject;
import javax.inject.Named;
import java.net.URI;
import java.util.List;
import java.util.Optional;
public class ESVersionCheckPeriodical extends Periodical {
private static final Logger LOG = LoggerFactory.getLogger(ESVersionCheckPeriodical.class);
private final SearchVersion initialElasticsearchVersion;
private final Optional versionOverride;
private final List elasticsearchHosts;
private final VersionProbe versionProbe;
private final NotificationService notificationService;
@Inject
public ESVersionCheckPeriodical(@DetectedSearchVersion SearchVersion elasticsearchVersion,
@Named("elasticsearch_version") @Nullable SearchVersion versionOverride,
@IndexerHosts List elasticsearchHosts,
VersionProbe versionProbe,
NotificationService notificationService) {
this.initialElasticsearchVersion = elasticsearchVersion;
this.versionOverride = Optional.ofNullable(versionOverride);
this.elasticsearchHosts = elasticsearchHosts;
this.versionProbe = versionProbe;
this.notificationService = notificationService;
}
@Override
public boolean runsForever() {
return false;
}
@Override
public boolean stopOnGracefulShutdown() {
return true;
}
@Override
public boolean leaderOnly() {
return true;
}
@Override
public boolean startOnThisNode() {
return true;
}
@Override
public boolean isDaemon() {
return true;
}
@Override
public int getInitialDelaySeconds() {
return 0;
}
@Override
public int getPeriodSeconds() {
return 30;
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public void doRun() {
if (versionOverride.isPresent()) {
LOG.debug("Elasticsearch version is set manually. Not running check.");
return;
}
final Optional probedVersion = this.versionProbe.probe(this.elasticsearchHosts);
probedVersion.ifPresent(version -> {
if (compatible(this.initialElasticsearchVersion, version)) {
notificationService.fixed(Notification.Type.ES_VERSION_MISMATCH);
} else {
LOG.warn("Elasticsearch version currently running ({}) is incompatible with the one Graylog was started " +
"with ({}) - a restart is required!", version, initialElasticsearchVersion);
final Notification notification = notificationService.buildNow()
.addType(Notification.Type.ES_VERSION_MISMATCH)
.addSeverity(Notification.Severity.URGENT)
.addDetail("initial_version", initialElasticsearchVersion.toString())
.addDetail("current_version", version.toString());
notificationService.publishIfFirst(notification);
}
});
}
private boolean compatible(SearchVersion initialElasticsearchMajorVersion, SearchVersion version) {
return initialElasticsearchMajorVersion.version().getMajorVersion() == version.version().getMajorVersion();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy