blob: 32d677dfdc14fc5c77b82921dd42ff31ef182202 [file] [log] [blame]
William Kurkian6f436d02019-02-06 16:25:01 -05001# Copyright 2017-present Adtran, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14from voltha.protos.events_pb2 import AlarmEventType, AlarmEventSeverity, AlarmEventCategory
15from voltha.extensions.alarms.adapter_alarms import AlarmBase
16
17
18class OnuWindowDriftAlarm(AlarmBase):
19 """
20 OnuDriftOfWindowIndication {
21 fixed32 intf_id = 1;
22 fixed32 onu_id = 2;
23 string status = 3;
24 fixed32 drift = 4;
25 fixed32 new_eqd = 5;
26 }
27 """
28 def __init__(self, alarm_mgr, onu_id, intf_id, drift, new_eqd):
29 super(OnuWindowDriftAlarm, self).__init__(alarm_mgr, object_type='onu WINDOW DRIFT',
30 alarm='ONU_WINDOW_DRIFT',
31 alarm_category=AlarmEventCategory.ONU,
32 alarm_type=AlarmEventType.COMMUNICATION,
33 alarm_severity=AlarmEventSeverity.MAJOR)
34 self._onu_id = onu_id
35 self._intf_id = intf_id
36 self._drift = drift
37 self._new_eqd = new_eqd
38
39 def get_context_data(self):
40 return {'onu-id': self._onu_id,
41 'onu-intf-id': self._intf_id,
42 'drift': self._drift,
43 'new-eqd': self._new_eqd}