ApplicationAlarm.java 3.8 KB
Newer Older
P
peng-yongsheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.skywalking.apm.collector.storage.table.alarm;

import org.apache.skywalking.apm.collector.core.data.Column;
22
import org.apache.skywalking.apm.collector.core.data.RemoteData;
P
peng-yongsheng 已提交
23
import org.apache.skywalking.apm.collector.core.data.StreamData;
P
peng-yongsheng 已提交
24 25
import org.apache.skywalking.apm.collector.core.data.operator.CoverOperation;
import org.apache.skywalking.apm.collector.core.data.operator.NonOperation;
26
import org.apache.skywalking.apm.collector.remote.service.RemoteDataRegisterService;
P
peng-yongsheng 已提交
27 28 29 30

/**
 * @author peng-yongsheng
 */
P
peng-yongsheng 已提交
31
public class ApplicationAlarm extends StreamData implements Alarm {
P
peng-yongsheng 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

    private static final Column[] STRING_COLUMNS = {
        new Column(ApplicationAlarmTable.COLUMN_ID, new NonOperation()),
        new Column(ApplicationAlarmTable.COLUMN_ALARM_CONTENT, new CoverOperation()),
    };

    private static final Column[] LONG_COLUMNS = {
        new Column(ApplicationAlarmTable.COLUMN_LAST_TIME_BUCKET, new CoverOperation()),
    };

    private static final Column[] DOUBLE_COLUMNS = {};

    private static final Column[] INTEGER_COLUMNS = {
        new Column(ApplicationAlarmTable.COLUMN_ALARM_TYPE, new NonOperation()),
        new Column(ApplicationAlarmTable.COLUMN_SOURCE_VALUE, new NonOperation()),
        new Column(ApplicationAlarmTable.COLUMN_APPLICATION_ID, new NonOperation()),
    };

    private static final Column[] BYTE_COLUMNS = {};

P
peng-yongsheng 已提交
52
    public ApplicationAlarm() {
53
        super(STRING_COLUMNS, LONG_COLUMNS, DOUBLE_COLUMNS, INTEGER_COLUMNS, BYTE_COLUMNS);
P
peng-yongsheng 已提交
54 55 56 57 58 59 60 61 62 63 64
    }

    @Override public String getId() {
        return getDataString(0);
    }

    @Override public void setId(String id) {
        setDataString(0, id);
    }

    @Override public String getMetricId() {
P
peng-yongsheng 已提交
65
        return getId();
P
peng-yongsheng 已提交
66 67 68
    }

    @Override public void setMetricId(String metricId) {
P
peng-yongsheng 已提交
69
        setId(metricId);
P
peng-yongsheng 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    }

    @Override
    public Integer getAlarmType() {
        return getDataInteger(0);
    }

    @Override
    public void setAlarmType(Integer alarmType) {
        setDataInteger(0, alarmType);
    }

    @Override
    public Integer getSourceValue() {
        return getDataInteger(1);
    }

    @Override
    public void setSourceValue(Integer sourceValue) {
        setDataInteger(1, sourceValue);
    }

    public Integer getApplicationId() {
        return getDataInteger(2);
    }

    public void setApplicationId(Integer applicationId) {
        setDataInteger(2, applicationId);
    }

    @Override
    public Long getLastTimeBucket() {
        return getDataLong(0);
    }

    @Override
    public void setLastTimeBucket(Long lastTimeBucket) {
        setDataLong(0, lastTimeBucket);
    }

    @Override
    public String getAlarmContent() {
        return getDataString(1);
    }

    @Override
    public void setAlarmContent(String alarmContent) {
        setDataString(1, alarmContent);
    }
119 120 121 122 123 124

    public static class InstanceCreator implements RemoteDataRegisterService.RemoteDataInstanceCreator {
        @Override public RemoteData createInstance() {
            return new ApplicationAlarm();
        }
    }
P
peng-yongsheng 已提交
125
}