Last active
November 27, 2023 17:26
-
-
Save kgriffs/e717b8669b9b099b82ac40e11ed25e1a to your computer and use it in GitHub Desktop.
DataDog Download Logs Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import requests | |
| import time | |
| class DataDogLogFetcher: | |
| _MAX_LIMIT = 1_000 | |
| _FETCH_LIMIT = 500 | |
| _SLEEP_SEC = 1 | |
| def __init__(self, query, start, end, api_key, app_key): | |
| self._cursor = None | |
| self._query = query | |
| self._api_key = api_key | |
| self._app_key = app_key | |
| self._start_timestamp = start.isoformat() | |
| self._end_timestamp = end.isoformat() | |
| def _next(self): | |
| # Make the API request to get log events | |
| url = f'https://api.datadoghq.com/api/v2/logs/events/search' | |
| headers = {'Content-Type': 'application/json', 'DD-API-KEY': self._api_key, 'DD-APPLICATION-KEY': self._app_key} | |
| params = { | |
| 'filter': {'query': query, 'from': self._start_timestamp, 'to': self._end_timestamp}, | |
| 'page': {'limit': self._FETCH_LIMIT}, | |
| } | |
| if self._cursor: | |
| params['page']['cursor'] = self._cursor | |
| response = requests.post(url, headers=headers, json=params) | |
| response.raise_for_status() | |
| result = response.json() | |
| self._cursor = result['meta']['page']['after'] | |
| return result['data'] or None | |
| def fetch(self, limit): | |
| all_events = [] | |
| while len(all_events) < limit and (batch := self._next()): | |
| all_events += batch | |
| print(f"Fetched a batch of {len(batch)} log events; {len(all_events)} total fetched so far...") | |
| time.sleep(self._SLEEP_SEC) | |
| return all_events |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example usage: