This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore metrics:health-check-registry element
Add a test for the health checks
- Loading branch information
1 parent
28075ae
commit d69a5dd
Showing
6 changed files
with
141 additions
and
1 deletion.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
...in/java/com/ryantenney/metrics/spring/config/HealthCheckRegistryBeanDefinitionParser.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright 2012 Ryan W Tenney (http://ryan.10e.us) | ||
* and Martello Technologies (http://martellotech.com) | ||
* | ||
* 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 com.ryantenney.metrics.spring.config; | ||
|
||
import org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser; | ||
import org.w3c.dom.Element; | ||
|
||
import com.codahale.metrics.health.HealthCheckRegistry; | ||
|
||
class HealthCheckRegistryBeanDefinitionParser extends AbstractSingleBeanDefinitionParser { | ||
|
||
@Override | ||
protected Class<?> getBeanClass(Element element) { | ||
return HealthCheckRegistry.class; | ||
} | ||
|
||
@Override | ||
protected boolean shouldGenerateIdAsFallback() { | ||
return true; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
src/test/java/com/ryantenney/metrics/spring/HealthCheckTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright 2012 Ryan W Tenney (http://ryan.10e.us) | ||
* and Martello Technologies (http://martellotech.com) | ||
* | ||
* 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 com.ryantenney.metrics.spring; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertFalse; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.test.context.ContextConfiguration; | ||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; | ||
|
||
import com.codahale.metrics.health.HealthCheck; | ||
import com.codahale.metrics.health.HealthCheck.Result; | ||
import com.codahale.metrics.health.HealthCheckRegistry; | ||
|
||
@RunWith(SpringJUnit4ClassRunner.class) | ||
@ContextConfiguration("classpath:health-check.xml") | ||
public class HealthCheckTest { | ||
|
||
@Autowired | ||
HealthCheckClass healthCheckClass; | ||
|
||
@Autowired | ||
HealthCheckRegistry healthCheckRegistry; | ||
|
||
@Test | ||
public void testHealthy() { | ||
healthCheckClass.setShouldFail(false); | ||
Result result = healthCheckRegistry.runHealthCheck("myHealthCheckClass"); | ||
assertTrue(result.isHealthy()); | ||
} | ||
|
||
@Test | ||
public void testUnhealthy() { | ||
healthCheckClass.setShouldFail(true); | ||
Result result = healthCheckRegistry.runHealthCheck("myHealthCheckClass"); | ||
assertFalse(result.isHealthy()); | ||
assertEquals("fail whale", result.getMessage()); | ||
} | ||
|
||
public static class HealthCheckClass extends HealthCheck { | ||
|
||
private boolean shouldFail; | ||
|
||
public boolean isShouldFail() { | ||
return shouldFail; | ||
} | ||
|
||
public void setShouldFail(boolean shouldFail) { | ||
this.shouldFail = shouldFail; | ||
} | ||
|
||
@Override | ||
protected Result check() { | ||
if (shouldFail) { | ||
return Result.unhealthy(new RuntimeException("fail whale")); | ||
} | ||
return Result.healthy(); | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:context="http://www.springframework.org/schema/context" | ||
xmlns:metrics="http://www.ryantenney.com/schema/metrics" | ||
|
||
xsi:schemaLocation=" | ||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd | ||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd | ||
http://www.ryantenney.com/schema/metrics http://www.ryantenney.com/schema/metrics/metrics-3.0.xsd"> | ||
|
||
<metrics:health-check-registry id="health" /> | ||
<metrics:annotation-driven health-check-registry="health" /> | ||
|
||
<bean id="myHealthCheckClass" class="com.ryantenney.metrics.spring.HealthCheckTest.HealthCheckClass" /> | ||
|
||
</beans> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters