/* * Copyright 2014 NAVER Corp. * * 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.navercorp.pinpoint.web.alarm.checker; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Map.Entry; import com.navercorp.pinpoint.web.alarm.collector.DataCollector; import com.navercorp.pinpoint.web.alarm.vo.Rule; /** * @author minwoo.jung */ public abstract class AgentChecker extends AlarmChecker { protected Map<String, Long> detectedAgents = new HashMap<>(); protected AgentChecker(Rule rule, String unit, DataCollector dataCollector) { super(rule, unit, dataCollector); } @Override public void check() { dataCollector.collect(); Map<String, Long> agents = getAgentValues(); for(Entry<String, Long> agent : agents.entrySet()) { if (decideResult(agent.getValue())) { detected = true; detectedAgents.put(agent.getKey(), agent.getValue()); } logger.info("{} result is {} for agent({}). value is {}. (threshold : {}).", this.getClass().getSimpleName(), detected, agent.getKey(), agent.getValue(), rule.getThreshold()); } } @Override protected long getDetectedValue() { throw new UnsupportedOperationException(this.getClass() + "is not support getDetectedValue function. you should use getAgentValues"); } public List<String> getSmsMessage() { List<String> messages = new LinkedList<>(); for (Entry<String, Long> detected : detectedAgents.entrySet()) { messages.add(String.format("[PINPOINT Alarm - %s] %s is %s%s (Threshold : %s%s)", detected.getKey(), rule.getCheckerName(), detected.getValue(), unit, rule.getThreshold(), unit)); } return messages; } @Override public String getEmailMessage() { StringBuilder message = new StringBuilder(); for (Entry<String, Long> detected : detectedAgents.entrySet()) { message.append(String.format(" Value of agent(%s) is %s%s during the past 5 mins.(Threshold : %s%s)", detected.getKey(), detected.getValue(), unit, rule.getThreshold(), unit)); message.append("<br>"); } return message.toString(); } protected abstract Map<String, Long> getAgentValues(); }