blob: c7da2bc8af68905b5b2f8d8ef9dcfa24352f657f [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 OnuDiscoveryAlarm(AlarmBase):
19 def __init__(self, alarm_mgr, pon_id, serial_number):
20 super(OnuDiscoveryAlarm, self).__init__(alarm_mgr, object_type='ONU Discovery',
21 alarm='ONU_DISCOVERY',
22 alarm_category=AlarmEventCategory.PON,
23 resource_id=pon_id,
24 alarm_type=AlarmEventType.EQUIPMENT,
25 alarm_severity=AlarmEventSeverity.MAJOR)
26 self._pon_id = pon_id
27 self._serial_number = serial_number
28
29 def get_context_data(self):
30 return {
31 'pon-id': self._pon_id,
32 'serial-number': self._serial_number
33 }
34
35 def clear_alarm(self):
36 raise NotImplementedError('ONU Discovery Alarms are auto-clear')