blob: 9b73bc35385e7a4e5cb8c38a6f3664f84d982685 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 sample.camel;
import java.util.Map;
import java.util.UUID;
import org.apache.camel.health.HealthCheckResultBuilder;
import org.apache.camel.impl.health.AbstractHealthCheck;
public class ApplicationCheck extends AbstractHealthCheck {
private State state;
public ApplicationCheck(String group, String id) {
super(group, id);
this.state = State.UP;
getConfiguration().setEnabled(true);
}
public State getState() {
return state;
}
public void setState(State state) {
this.state = state;
}
@Override
protected void doCall(HealthCheckResultBuilder builder, Map<String, Object> options) {
builder.state(state).detail("random.value", UUID.randomUUID().toString());
}
}