Search in sources :

Example 26 with Rule

use of com.navercorp.pinpoint.web.alarm.vo.Rule in project pinpoint by naver.

the class ResponseCountCheckerTest 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(), DataCollectorFactory.SLOT_INTERVAL_FIVE_MIN);
    Rule rule = new Rule(SERVICE_NAME, SERVICE_TYPE, CheckerCategory.TOTAL_COUNT.getName(), 125, "testGroup", false, false, "");
    ResponseCountChecker filter = new ResponseCountChecker(collector, rule);
    filter.check();
    assertTrue(filter.isDetected());
}
Also used : ResponseCountChecker(com.navercorp.pinpoint.web.alarm.checker.ResponseCountChecker) Rule(com.navercorp.pinpoint.web.alarm.vo.Rule) Application(com.navercorp.pinpoint.web.vo.Application) ResponseTimeDataCollector(com.navercorp.pinpoint.web.alarm.collector.ResponseTimeDataCollector) Test(org.junit.Test)

Example 27 with Rule

use of com.navercorp.pinpoint.web.alarm.vo.Rule in project pinpoint by naver.

the class SlowCountCheckerTest 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.SLOW_COUNT.getName(), 74, "testGroup", false, false, "");
    SlowCountChecker checker = new SlowCountChecker(collector, rule);
    checker.check();
    assertTrue(checker.isDetected());
}
Also used : SlowCountChecker(com.navercorp.pinpoint.web.alarm.checker.SlowCountChecker) Rule(com.navercorp.pinpoint.web.alarm.vo.Rule) Application(com.navercorp.pinpoint.web.vo.Application) ResponseTimeDataCollector(com.navercorp.pinpoint.web.alarm.collector.ResponseTimeDataCollector) Test(org.junit.Test)

Example 28 with Rule

use of com.navercorp.pinpoint.web.alarm.vo.Rule in project pinpoint by naver.

the class SlowCountToCalleCheckerTest method checkTest3.

@Test
public void checkTest3() {
    Application application = new Application(FROM_SERVICE_NAME, ServiceType.STAND_ALONE);
    MapStatisticsCallerDataCollector dataCollector = new MapStatisticsCallerDataCollector(DataCollectorCategory.CALLER_STAT, application, dao, System.currentTimeMillis(), 300000);
    Rule rule = new Rule(FROM_SERVICE_NAME, SERVICE_TYPE, CheckerCategory.SLOW_COUNT_TO_CALLEE.getName(), 9, "testGroup", false, false, TO_SERVICE_NAME + 2);
    SlowCountToCalleeChecker checker = new SlowCountToCalleeChecker(dataCollector, rule);
    checker.check();
    assertTrue(checker.isDetected());
}
Also used : MapStatisticsCallerDataCollector(com.navercorp.pinpoint.web.alarm.collector.MapStatisticsCallerDataCollector) Rule(com.navercorp.pinpoint.web.alarm.vo.Rule) Application(com.navercorp.pinpoint.web.vo.Application) Test(org.junit.Test)

Example 29 with Rule

use of com.navercorp.pinpoint.web.alarm.vo.Rule in project pinpoint by naver.

the class SlowCountToCalleCheckerTest method checkTest.

@Test
public void checkTest() {
    Application application = new Application(FROM_SERVICE_NAME, ServiceType.STAND_ALONE);
    MapStatisticsCallerDataCollector dataCollector = new MapStatisticsCallerDataCollector(DataCollectorCategory.CALLER_STAT, application, dao, System.currentTimeMillis(), 300000);
    Rule rule = new Rule(FROM_SERVICE_NAME, SERVICE_TYPE, CheckerCategory.SLOW_COUNT_TO_CALLEE.getName(), 7, "testGroup", false, false, TO_SERVICE_NAME + 1);
    SlowCountToCalleeChecker checker = new SlowCountToCalleeChecker(dataCollector, rule);
    checker.check();
    assertTrue(checker.isDetected());
}
Also used : MapStatisticsCallerDataCollector(com.navercorp.pinpoint.web.alarm.collector.MapStatisticsCallerDataCollector) Rule(com.navercorp.pinpoint.web.alarm.vo.Rule) Application(com.navercorp.pinpoint.web.vo.Application) Test(org.junit.Test)

Example 30 with Rule

use of com.navercorp.pinpoint.web.alarm.vo.Rule in project pinpoint by naver.

the class SlowRateCheckerTest method checkTest2.

/*
     * not satisfied with alert condition
     */
@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.SLOW_RATE.getName(), 61, "testGroup", false, false, "");
    SlowRateChecker filter = new SlowRateChecker(collector, rule);
    filter.check();
    assertFalse(filter.isDetected());
}
Also used : SlowRateChecker(com.navercorp.pinpoint.web.alarm.checker.SlowRateChecker) Rule(com.navercorp.pinpoint.web.alarm.vo.Rule) Application(com.navercorp.pinpoint.web.vo.Application) ResponseTimeDataCollector(com.navercorp.pinpoint.web.alarm.collector.ResponseTimeDataCollector) Test(org.junit.Test)

Aggregations

Rule (com.navercorp.pinpoint.web.alarm.vo.Rule)36 Test (org.junit.Test)33 Application (com.navercorp.pinpoint.web.vo.Application)30 MapStatisticsCallerDataCollector (com.navercorp.pinpoint.web.alarm.collector.MapStatisticsCallerDataCollector)15 ResponseTimeDataCollector (com.navercorp.pinpoint.web.alarm.collector.ResponseTimeDataCollector)11 SlowCountChecker (com.navercorp.pinpoint.web.alarm.checker.SlowCountChecker)5 AgentStatDataCollector (com.navercorp.pinpoint.web.alarm.collector.AgentStatDataCollector)4 LinkedList (java.util.LinkedList)4 AlarmChecker (com.navercorp.pinpoint.web.alarm.checker.AlarmChecker)3 ErrorCountToCalleeChecker (com.navercorp.pinpoint.web.alarm.checker.ErrorCountToCalleeChecker)3 ErrorRateToCalleeChecker (com.navercorp.pinpoint.web.alarm.checker.ErrorRateToCalleeChecker)3 SlowRateToCalleeChecker (com.navercorp.pinpoint.web.alarm.checker.SlowRateToCalleeChecker)3 ErrorCountChecker (com.navercorp.pinpoint.web.alarm.checker.ErrorCountChecker)2 ErrorRateChecker (com.navercorp.pinpoint.web.alarm.checker.ErrorRateChecker)2 ResponseCountChecker (com.navercorp.pinpoint.web.alarm.checker.ResponseCountChecker)2 SlowRateChecker (com.navercorp.pinpoint.web.alarm.checker.SlowRateChecker)2 DataCollector (com.navercorp.pinpoint.web.alarm.collector.DataCollector)2 AlarmServiceImpl (com.navercorp.pinpoint.web.service.AlarmServiceImpl)2 HashMap (java.util.HashMap)2 Ignore (org.junit.Ignore)2