Missing Logs from the API endpoint

Hi,

We continuously query Sophos Central API endpoints for alerts, events on a 5 minute basis.

We've noticed that there are missing logs every day.

The next cursor that is returned in every response is used in the next request to query for new data.

But at the end of the day, when i query for events for the entire day using start date instead of next cursor, all of the logs seem to be there.

So, it seems a case of events sneaking in after the response is returned by the API somehow.

Could someone please let us know if anything is missing in the way we query for data ?

Thank you

Ravi

Parents
  • FormerMember
    0 FormerMember

    Hi Ravi,

    Can you show me the request you are making? Specifically how are you handling the pagination of the return?

  • Hi Richard,

    I've put together the below code to make it simpler. The initial request does not contain the next_cursor or rather an invalid cursor value.

    From the response, the next cursor is stored in the db and re-used in the next request and so on. Hope that explains.

    import requests
    
    url = 'https://api3.central.sophos.com/gateway/siem/v1/events'
    
    
    def get_header():
        return {'Content-Type': 'application/json; charset=utf-8',
                'Accept': 'application/json',
                'X-Locale': 'en',
                'Authorization': 'Basic xxxxxx',
                'x-api-key': 'xxxxxx',
                }
    
    
    def get_event_response(event_next_cursor):
        response = requests.get(url, headers=get_header(), params={'cursor': event_next_cursor}, timeout=120)
        return response.json()
    
    
    def get_events(event_next_cursor=None):
        log_count = 0
        has_more_flag = True
        event_next_cursor = event_next_cursor
    
        while has_more_flag:
            event_response_json = get_event_response(event_next_cursor)
            events = event_response_json.get('items', list())
            event_next_cursor = event_response_json.get('next_cursor', '')
            log_count += len(events)
    
            # post processing on the events is done here
            
            # store event cursor in the database
            # update_latest_event_cursor(event_next_cursor)
    
            has_more_flag = event_response_json.get('has_more', False)
    
        return log_count
    
    
    get_events()

  • FormerMember
    0 FormerMember in reply to Ravi Polepeddi

    So, you are using the old SIEM Api that we are replacing. 

    Have you tried out the script we provide to make sure the data set actually exists?

    If you want to see the new API the documentation is here: https://developer.sophos.com/

Reply Children