blob: 5286947cb39e04ed1ec978a267f3f123495ff93c [file] [log] [blame]
Chip Boling67b674a2019-02-08 11:42:18 -06001# 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.
Zack Williams84a71e92019-11-15 09:00:19 -070014from __future__ import absolute_import
William Kurkianede82e92019-03-05 13:02:57 -050015from voltha_protos.events_pb2 import AlarmEventType, AlarmEventSeverity, AlarmEventCategory
Chip Boling67b674a2019-02-08 11:42:18 -060016from pyvoltha.adapters.extensions.alarms.adapter_alarms import AlarmBase
17
18"""
19 message OnuStartupFailureIndication {
20 fixed32 intf_id = 1;
21 fixed32 onu_id = 2;
22 string status = 3;
23}
24
25"""
26
27class OnuStartupAlarm(AlarmBase):
28
serkant.uluderya982a4b62019-03-17 23:29:39 -070029 def __init__(self, alarm_mgr, onu_id, intf_id, serial_number):
Chip Boling67b674a2019-02-08 11:42:18 -060030 super(OnuStartupAlarm, self).__init__(alarm_mgr, object_type='onu STARTUP FAIL',
31 alarm='ONU_STARTUP_FAIL',
32 alarm_category=AlarmEventCategory.ONU,
33 alarm_type=AlarmEventType.COMMUNICATION,
34 alarm_severity=AlarmEventSeverity.MAJOR)
35 self._onu_id = onu_id
36 self._intf_id = intf_id
serkant.uluderya982a4b62019-03-17 23:29:39 -070037 self._serial_number = serial_number
Chip Boling67b674a2019-02-08 11:42:18 -060038
39 def get_context_data(self):
40 return {'onu-id': self._onu_id,
serkant.uluderya982a4b62019-03-17 23:29:39 -070041 'onu-intf-id': self._intf_id,
42 'onu-serial-number': self._serial_number
43 }