Package com.seyren.core.util.graphite

Examples of com.seyren.core.util.graphite.GraphiteReadException


        assertThat(values.get("service.warn.1MinuteRate").get(), is(new BigDecimal("0.78")));
    }
   
    @Test
    public void exceptionGettingDataFromGraphiteIsHandled() throws Exception {
        when(mockGraphiteHttpClient.getTargetJson("service.*.1MinuteRate", null, null)).thenThrow(new GraphiteReadException("Graphite bad times", new RuntimeException("Bad times")));
       
        Map<String, Optional<BigDecimal>> values = checker.check(checkWithTarget("service.*.1MinuteRate"));
       
        assertThat(values.size(), is(0));
    }
View Full Code Here

TOP

Related Classes of com.seyren.core.util.graphite.GraphiteReadException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.