Exemplo n.º 1
0
 def test_json_alert_send(self):
     """ Test send json as message description """
     EventMessage.init(component='cmp', source='H', \
         cluster_id=TestMessage._cluster_id, \
         message_server_endpoints=TestMessage._message_server_endpoints)
     EventMessage.send(module='mod', event_id='500', severity='B', \
         message_blob={'input': 'This is message'})
Exemplo n.º 2
0
 def test_alert_send(self):
     """ Test send alerts """
     EventMessage.init(component='cmp', source='H', \
         cluster_id=TestMessage._cluster_id, \
         message_server_endpoints=TestMessage._message_server_endpoints)
     EventMessage.send(module='mod', event_id='500', severity='B', \
         message_blob='This is message')
Exemplo n.º 3
0
 def test_bulk_alert_send(self):
     """ Test bulk send alerts """
     EventMessage.init(component='cmp', source='H', \
         cluster_id=TestMessage._cluster_id, \
         message_server_endpoints=TestMessage._message_server_endpoints)
     for alert_count in range(0, 1000):
         EventMessage.send(module='mod', event_id='500', severity='B', \
             message_blob='test_bulk_message' + str(alert_count))
Exemplo n.º 4
0
 def test_validate_without_optional_params(self):
     """ Validate without optional params of send attributes """
     EventMessage.send(module='mod', event_id='500', severity='B', \
         message_blob={'input': 'This is message'})
     alert = EventMessage.receive()
     self.assertEqual(alert['iem']['location']['site_id'], \
         alert['iem']['source']['site_id'])
     self.assertEqual(alert['iem']['location']['node_id'], \
         alert['iem']['source']['node_id'])
     self.assertEqual(alert['iem']['location']['rack_id'], \
         alert['iem']['source']['rack_id'])
Exemplo n.º 5
0
 def send(self, module, event_id, severity, message_blob):
     """Send the message."""
     try:
         EventMessage.send(module='S3 BG delete',
                           event_id=event_id,
                           severity=severity,
                           message_blob=message_blob)
     except Exception as exception:
         self._logger.ERROR("Exception : ", exception)
         return False
     return True
Exemplo n.º 6
0
 def generate_iem(module, event_code, severity, description):
     """Generate iem and send it to a MessgaeBroker."""
     try:
         logger.info(f"Sending IEM alert for module:{module}"
                     f" and event_code:{event_code}")
         EventMessage.send(module=module,
                           event_id=event_code,
                           severity=severity,
                           message_blob=description)
     except EventMessageError as e:
         logger.error("Failed to send IEM alert." f"Error:{e}")
Exemplo n.º 7
0
 def raise_iem_event(module, event_code, severity, description):
     """Send IEM message."""
     # check if IEM Framework initialized,
     # if not, retry initializing the IEM Framework
     if os.path.exists(IEM_INIT_FAILED):
         with open(IEM_INIT_FAILED, 'r') as f:
             sspl_pid = f.read()
         if sspl_pid and psutil.pid_exists(int(sspl_pid)):
             EventMessage.init(component='sspl', source='S')
             logger.info("IEM framework initialization completed!!")
         os.remove(IEM_INIT_FAILED)
     EventMessage.send(module=module,
                       event_id=event_code,
                       severity=severity,
                       message_blob=description)
Exemplo n.º 8
0
 def test_send_validation(self):
     """ Validate send attributes """
     with self.assertRaises(EventMessageError):
         EventMessage.send(module=None, event_id='500', severity='B', \
             message_blob='This is message')
         EventMessage.send(module='mod', event_id=None, severity='B', \
             message_blob='This is message')
         EventMessage.send(module='mod', event_id='500', severity='Z', \
             message_blob='This is message')
         EventMessage.send(module='mod', event_id='500', severity='Z', \
             message_blob=None)
Exemplo n.º 9
0
 def generate_iem(module, event_code, severity, description):
     """Generate iem and send it to a MessgaeBroker."""
     try:
         logger.info(f"Sending IEM alert for module:{module}"
                     f" and event_code:{event_code}")
         # check if IEM Framework initialized,
         # if not, retry initializing the IEM Frameowork
         if os.path.exists(IEM_INIT_FAILED):
             with open(IEM_INIT_FAILED, 'r') as f:
                 sspl_pid = f.read()
             if sspl_pid and psutil.pid_exists(int(sspl_pid)):
                 EventMessage.init(component='sspl', source='S')
                 logger.info("IEM framework initialization completed!!")
             os.remove(IEM_INIT_FAILED)
         EventMessage.send(module=module,
                           event_id=event_code,
                           severity=severity,
                           message_blob=description)
     except EventMessageError as e:
         logger.error("Failed to send IEM alert." f"Error:{e}")
Exemplo n.º 10
0
    async def send(request):
        try:
            payload = await request.json()

            component = payload['component']
            source = payload['source']
            EventMessage.init(component=component, source=source,\
                cluster_id=IemRequestHandler.cluster_id,\
                message_server_endpoints=IemRequestHandler.message_server_endpoints)

            del payload['component']
            del payload['source']
            EventMessage.send(**payload)
        except EventMessageError as e:
            status_code = e.rc
            error_message = e.desc
            Log.error(f"Unable to send event message for component: " \
                      f"{component}, status code: {status_code}," \
                      f" error: {error_message}")
            response_obj = {'error_code': status_code, 'exception': \
                ['EventMessageError', {'message': error_message}]}
        except Exception as e:
            exception_key = type(e).__name__
            exception = RestServerError(exception_key).http_error()
            status_code = exception[0]
            error_message = exception[1]
            Log.error(f"Internal error while sending event messages for " \
                f"component: {component}, status code: " \
                f"{status_code}, error: {error_message}")
            response_obj = {'error_code': status_code, 'exception': \
                [exception_key, {'message': error_message}]}
            raise EventMessageError(status_code, error_message) from e
        else:
            status_code = 200  # No exception, Success
            response_obj = {'status_code': status_code, 'status': 'success'}
            Log.debug(f"POST method finished for component: {component} "
                      f"and source: {source}, with status code: {status_code}")
        finally:
            return web.Response(text=json.dumps(response_obj), \
                status=status_code)
Exemplo n.º 11
0
 def test_alert_fail_send(self):
     """ Send message without initialising """
     with self.assertRaises(EventMessageError):
         EventMessage.send(module='mod', event_id='500', severity='B', \
             message_blob='This is message')
Exemplo n.º 12
0
 def test_json_alert_send(self):
     """ Test send json as message description """
     EventMessage.init(component='cmp', source='H')
     EventMessage.send(module='mod', event_id='500', severity='B', \
         message={'input': 'This is message'})
Exemplo n.º 13
0
 def test_send_fail(self):
     """ Send message with receiver as True """
     EventMessage.init(component='cmp', source='H', receiver=True)
     with self.assertRaises(NameError):
         EventMessage.send(module='mod', event_id='500', severity='B', \
             message='This is message')
Exemplo n.º 14
0
 def test_bulk_alert_send(self):
     """ Test bulk send alerts """
     EventMessage.init(component='cmp', source='H')
     for alert_count in range(0, 1000):
         EventMessage.send(module='mod', event_id='500', severity='B', \
             message='This is message' + str(alert_count))
Exemplo n.º 15
0
 def test_alert_send(self):
     """ Test send alerts """
     EventMessage.init(component='cmp', source='H')
     EventMessage.send(module='mod', event_id='500', severity='B', \
         message='This is message')