source/lambda/es_loader/siem/__init__.py [252:264]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        body: str = self.__rawdata.read()
        body_size: int = len(body)
        _w = json.decoder.WHITESPACE.match

        while True:
            # skip leading whitespace
            idx = _w(body, idx).end()
            if idx >= body_size:
                break
            obj, idx = decoder.raw_decode(body, idx=idx)
            if (isinstance(obj, dict)
                    and 'logEvents' in obj
                    and obj['messageType'] == 'DATA_MESSAGE'):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/lambda/es_loader/siem/__init__.py [274:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        body: str = self.__rawdata.read()
        body_size: int = len(body)
        _w = json.decoder.WHITESPACE.match

        while True:
            # skip leading whitespace
            idx = _w(body, idx).end()
            if idx >= body_size:
                break
            obj, idx = decoder.raw_decode(body, idx=idx)
            if (isinstance(obj, dict)
                    and 'logEvents' in obj
                    and obj['messageType'] == 'DATA_MESSAGE'):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



