mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-03-06 04:10:52 +01:00
Enable Health Checks (#1621)
In the release of version 2.0.0 of SCM-Manager, the health checks had been neglected. This makes them visible again in the frontend and adds the ability to trigger them. In addition there are two types of health checks: The "normal" ones, now called "light checks", that are run on startup, and more intense checks run only on request. As a change to version 1.x, health checks will no longer be persisted for repositories. Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com>
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
/*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
package sonia.scm.repository.spi;
|
||||
|
||||
import com.aragost.javahg.commands.ExecutionException;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import sonia.scm.repository.HealthCheckFailure;
|
||||
import sonia.scm.repository.HealthCheckResult;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class HgFullHealthCheckCommand extends AbstractCommand implements FullHealthCheckCommand {
|
||||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(HgFullHealthCheckCommand.class);
|
||||
|
||||
public HgFullHealthCheckCommand(HgCommandContext context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HealthCheckResult check() throws IOException {
|
||||
HgVerifyCommand cmd = HgVerifyCommand.on(open());
|
||||
try {
|
||||
cmd.execute();
|
||||
return HealthCheckResult.healthy();
|
||||
} catch (ExecutionException e) {
|
||||
LOG.warn("hg verify failed for repository {}", getRepository(), e);
|
||||
return HealthCheckResult.unhealthy(new HealthCheckFailure("FaSUYbZUR1",
|
||||
"hg verify failed", "The check 'hg verify' failed for the repository."));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -59,7 +59,8 @@ public class HgRepositoryServiceProvider extends RepositoryServiceProvider {
|
||||
Command.PULL,
|
||||
Command.MODIFY,
|
||||
Command.BUNDLE,
|
||||
Command.UNBUNDLE
|
||||
Command.UNBUNDLE,
|
||||
Command.FULL_HEALTH_CHECK
|
||||
);
|
||||
|
||||
public static final Set<Feature> FEATURES = EnumSet.of(Feature.COMBINED_DEFAULT_BRANCH);
|
||||
@@ -188,4 +189,9 @@ public class HgRepositoryServiceProvider extends RepositoryServiceProvider {
|
||||
public UnbundleCommand getUnbundleCommand() {
|
||||
return new HgUnbundleCommand(context, lazyChangesetResolver, eventFactory);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FullHealthCheckCommand getFullHealthCheckCommand() {
|
||||
return new HgFullHealthCheckCommand(context);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
package sonia.scm.repository.spi;
|
||||
|
||||
import com.aragost.javahg.Repository;
|
||||
import com.aragost.javahg.internals.AbstractCommand;
|
||||
|
||||
public class HgVerifyCommand extends AbstractCommand {
|
||||
|
||||
public static final String COMMAND_NAME = "verify";
|
||||
|
||||
protected HgVerifyCommand(Repository repository) {
|
||||
super(repository, COMMAND_NAME);
|
||||
}
|
||||
|
||||
public static HgVerifyCommand on(Repository repository) {
|
||||
return new HgVerifyCommand(repository);
|
||||
}
|
||||
|
||||
public String execute() {
|
||||
return launchString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCommandName() {
|
||||
return COMMAND_NAME;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user