use of com.navercorp.pinpoint.web.alarm.checker.ErrorRateChecker in project pinpoint by naver.
the class ErrorRateCheckerTest method checkTest2.
/*
* alert conditions not satisfied
*/
@Test
public void checkTest2() {
Application application = new Application(SERVICE_NAME, ServiceType.STAND_ALONE);
ResponseTimeDataCollector collector = new ResponseTimeDataCollector(DataCollectorCategory.RESPONSE_TIME, application, mockMapResponseDAO, System.currentTimeMillis(), 300000);
Rule rule = new Rule(SERVICE_NAME, SERVICE_TYPE, CheckerCategory.ERROR_RATE.getName(), 61, "testGroup", false, false, "");
ErrorRateChecker filter = new ErrorRateChecker(collector, rule);
filter.check();
assertFalse(filter.isDetected());
}
use of com.navercorp.pinpoint.web.alarm.checker.ErrorRateChecker in project pinpoint by naver.
the class ErrorRateCheckerTest method checkTest1.
/*
* alert conditions not satisfied
*/
@Test
public void checkTest1() {
Application application = new Application(SERVICE_NAME, ServiceType.STAND_ALONE);
ResponseTimeDataCollector collector = new ResponseTimeDataCollector(DataCollectorCategory.RESPONSE_TIME, application, mockMapResponseDAO, System.currentTimeMillis(), 300000);
Rule rule = new Rule(SERVICE_NAME, SERVICE_TYPE, CheckerCategory.ERROR_RATE.getName(), 60, "testGroup", false, false, "");
ErrorRateChecker filter = new ErrorRateChecker(collector, rule);
filter.check();
assertTrue(filter.isDetected());
}
Aggregations