-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathlogs_api.py
491 lines (430 loc) · 19.2 KB
/
logs_api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019-Present Datadog, Inc.
from __future__ import annotations
import collections
from typing import Any, Dict, List, Union
from datadog_api_client.api_client import ApiClient, Endpoint as _Endpoint
from datadog_api_client.configuration import Configuration
from datadog_api_client.model_utils import (
datetime,
set_attribute_from_path,
get_attribute_from_path,
UnsetType,
unset,
)
from datadog_api_client.v2.model.content_encoding import ContentEncoding
from datadog_api_client.v2.model.http_log import HTTPLog
from datadog_api_client.v2.model.logs_aggregate_response import LogsAggregateResponse
from datadog_api_client.v2.model.logs_aggregate_request import LogsAggregateRequest
from datadog_api_client.v2.model.logs_list_response import LogsListResponse
from datadog_api_client.v2.model.logs_storage_tier import LogsStorageTier
from datadog_api_client.v2.model.logs_sort import LogsSort
from datadog_api_client.v2.model.log import Log
from datadog_api_client.v2.model.logs_list_request import LogsListRequest
class LogsApi:
"""
Search your logs and send them to your Datadog platform over HTTP. See the `Log Management page <https://docs.datadoghq.com/logs/>`_ for more information.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient(Configuration())
self.api_client = api_client
self._aggregate_logs_endpoint = _Endpoint(
settings={
"response_type": (LogsAggregateResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/logs/analytics/aggregate",
"operation_id": "aggregate_logs",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"required": True,
"openapi_types": (LogsAggregateRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._list_logs_endpoint = _Endpoint(
settings={
"response_type": (LogsListResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/logs/events/search",
"operation_id": "list_logs",
"http_method": "POST",
"version": "v2",
},
params_map={
"body": {
"openapi_types": (LogsListRequest,),
"location": "body",
},
},
headers_map={"accept": ["application/json"], "content_type": ["application/json"]},
api_client=api_client,
)
self._list_logs_get_endpoint = _Endpoint(
settings={
"response_type": (LogsListResponse,),
"auth": ["apiKeyAuth", "appKeyAuth"],
"endpoint_path": "/api/v2/logs/events",
"operation_id": "list_logs_get",
"http_method": "GET",
"version": "v2",
},
params_map={
"filter_query": {
"openapi_types": (str,),
"attribute": "filter[query]",
"location": "query",
},
"filter_indexes": {
"openapi_types": ([str],),
"attribute": "filter[indexes]",
"location": "query",
"collection_format": "csv",
},
"filter_from": {
"openapi_types": (datetime,),
"attribute": "filter[from]",
"location": "query",
},
"filter_to": {
"openapi_types": (datetime,),
"attribute": "filter[to]",
"location": "query",
},
"filter_storage_tier": {
"openapi_types": (LogsStorageTier,),
"attribute": "filter[storage_tier]",
"location": "query",
},
"sort": {
"openapi_types": (LogsSort,),
"attribute": "sort",
"location": "query",
},
"page_cursor": {
"openapi_types": (str,),
"attribute": "page[cursor]",
"location": "query",
},
"page_limit": {
"validation": {
"inclusive_maximum": 1000,
},
"openapi_types": (int,),
"attribute": "page[limit]",
"location": "query",
},
},
headers_map={
"accept": ["application/json"],
},
api_client=api_client,
)
self._submit_log_endpoint = _Endpoint(
settings={
"response_type": (dict,),
"auth": ["apiKeyAuth"],
"endpoint_path": "/api/v2/logs",
"operation_id": "submit_log",
"http_method": "POST",
"version": "v2",
"servers": [
{
"url": "https://{subdomain}.{site}",
"variables": {
"site": {
"description": "The regional site for customers.",
"default_value": "datadoghq.com",
"enum_values": [
"datadoghq.com",
"us3.datadoghq.com",
"us5.datadoghq.com",
"ap1.datadoghq.com",
"datadoghq.eu",
"ddog-gov.com",
],
},
"subdomain": {
"description": "The subdomain where the API is deployed.",
"default_value": "http-intake.logs",
},
},
},
{
"url": "{protocol}://{name}",
"variables": {
"name": {
"description": "Full site DNS name.",
"default_value": "http-intake.logs.datadoghq.com",
},
"protocol": {
"description": "The protocol for accessing the API.",
"default_value": "https",
},
},
},
{
"url": "https://{subdomain}.{site}",
"variables": {
"site": {
"description": "Any Datadog deployment.",
"default_value": "datadoghq.com",
},
"subdomain": {
"description": "The subdomain where the API is deployed.",
"default_value": "http-intake.logs",
},
},
},
],
},
params_map={
"content_encoding": {
"openapi_types": (ContentEncoding,),
"attribute": "Content-Encoding",
"location": "header",
},
"ddtags": {
"openapi_types": (str,),
"attribute": "ddtags",
"location": "query",
},
"body": {
"required": True,
"openapi_types": (HTTPLog,),
"location": "body",
"collection_format": "multi",
},
},
headers_map={
"accept": ["application/json"],
"content_type": ["application/json", "application/logplex-1", "text/plain"],
},
api_client=api_client,
)
def aggregate_logs(
self,
body: LogsAggregateRequest,
) -> LogsAggregateResponse:
"""Aggregate events.
The API endpoint to aggregate events into buckets and compute metrics and timeseries.
:type body: LogsAggregateRequest
:rtype: LogsAggregateResponse
"""
kwargs: Dict[str, Any] = {}
kwargs["body"] = body
return self._aggregate_logs_endpoint.call_with_http_info(**kwargs)
def list_logs(
self,
*,
body: Union[LogsListRequest, UnsetType] = unset,
) -> LogsListResponse:
"""Search logs (POST).
List endpoint returns logs that match a log search query.
`Results are paginated </logs/guide/collect-multiple-logs-with-pagination>`_.
Use this endpoint to search and filter your logs.
If you are considering archiving logs for your organization,
consider use of the Datadog archive capabilities instead of the log list API.
See `Datadog Logs Archive documentation <https://docs.datadoghq.com/logs/archives>`_.
:type body: LogsListRequest, optional
:rtype: LogsListResponse
"""
kwargs: Dict[str, Any] = {}
if body is not unset:
kwargs["body"] = body
return self._list_logs_endpoint.call_with_http_info(**kwargs)
def list_logs_with_pagination(
self,
*,
body: Union[LogsListRequest, UnsetType] = unset,
) -> collections.abc.Iterable[Log]:
"""Search logs (POST).
Provide a paginated version of :meth:`list_logs`, returning all items.
:type body: LogsListRequest, optional
:return: A generator of paginated results.
:rtype: collections.abc.Iterable[Log]
"""
kwargs: Dict[str, Any] = {}
if body is not unset:
kwargs["body"] = body
local_page_size = get_attribute_from_path(kwargs, "body.page.limit", 10)
endpoint = self._list_logs_endpoint
set_attribute_from_path(kwargs, "body.page.limit", local_page_size, endpoint.params_map)
pagination = {
"limit_value": local_page_size,
"results_path": "data",
"cursor_param": "body.page.cursor",
"cursor_path": "meta.page.after",
"endpoint": endpoint,
"kwargs": kwargs,
}
return endpoint.call_with_http_info_paginated(pagination)
def list_logs_get(
self,
*,
filter_query: Union[str, UnsetType] = unset,
filter_indexes: Union[List[str], UnsetType] = unset,
filter_from: Union[datetime, UnsetType] = unset,
filter_to: Union[datetime, UnsetType] = unset,
filter_storage_tier: Union[LogsStorageTier, UnsetType] = unset,
sort: Union[LogsSort, UnsetType] = unset,
page_cursor: Union[str, UnsetType] = unset,
page_limit: Union[int, UnsetType] = unset,
) -> LogsListResponse:
"""Search logs (GET).
List endpoint returns logs that match a log search query.
`Results are paginated </logs/guide/collect-multiple-logs-with-pagination>`_.
Use this endpoint to search and filter your logs.
If you are considering archiving logs for your organization,
consider use of the Datadog archive capabilities instead of the log list API.
See `Datadog Logs Archive documentation <https://docs.datadoghq.com/logs/archives>`_.
:param filter_query: Search query following logs syntax.
:type filter_query: str, optional
:param filter_indexes: For customers with multiple indexes, the indexes to search.
Defaults to '*' which means all indexes
:type filter_indexes: [str], optional
:param filter_from: Minimum timestamp for requested logs.
:type filter_from: datetime, optional
:param filter_to: Maximum timestamp for requested logs.
:type filter_to: datetime, optional
:param filter_storage_tier: Specifies the storage type to be used
:type filter_storage_tier: LogsStorageTier, optional
:param sort: Order of logs in results.
:type sort: LogsSort, optional
:param page_cursor: List following results with a cursor provided in the previous query.
:type page_cursor: str, optional
:param page_limit: Maximum number of logs in the response.
:type page_limit: int, optional
:rtype: LogsListResponse
"""
kwargs: Dict[str, Any] = {}
if filter_query is not unset:
kwargs["filter_query"] = filter_query
if filter_indexes is not unset:
kwargs["filter_indexes"] = filter_indexes
if filter_from is not unset:
kwargs["filter_from"] = filter_from
if filter_to is not unset:
kwargs["filter_to"] = filter_to
if filter_storage_tier is not unset:
kwargs["filter_storage_tier"] = filter_storage_tier
if sort is not unset:
kwargs["sort"] = sort
if page_cursor is not unset:
kwargs["page_cursor"] = page_cursor
if page_limit is not unset:
kwargs["page_limit"] = page_limit
return self._list_logs_get_endpoint.call_with_http_info(**kwargs)
def list_logs_get_with_pagination(
self,
*,
filter_query: Union[str, UnsetType] = unset,
filter_indexes: Union[List[str], UnsetType] = unset,
filter_from: Union[datetime, UnsetType] = unset,
filter_to: Union[datetime, UnsetType] = unset,
filter_storage_tier: Union[LogsStorageTier, UnsetType] = unset,
sort: Union[LogsSort, UnsetType] = unset,
page_cursor: Union[str, UnsetType] = unset,
page_limit: Union[int, UnsetType] = unset,
) -> collections.abc.Iterable[Log]:
"""Search logs (GET).
Provide a paginated version of :meth:`list_logs_get`, returning all items.
:param filter_query: Search query following logs syntax.
:type filter_query: str, optional
:param filter_indexes: For customers with multiple indexes, the indexes to search.
Defaults to '*' which means all indexes
:type filter_indexes: [str], optional
:param filter_from: Minimum timestamp for requested logs.
:type filter_from: datetime, optional
:param filter_to: Maximum timestamp for requested logs.
:type filter_to: datetime, optional
:param filter_storage_tier: Specifies the storage type to be used
:type filter_storage_tier: LogsStorageTier, optional
:param sort: Order of logs in results.
:type sort: LogsSort, optional
:param page_cursor: List following results with a cursor provided in the previous query.
:type page_cursor: str, optional
:param page_limit: Maximum number of logs in the response.
:type page_limit: int, optional
:return: A generator of paginated results.
:rtype: collections.abc.Iterable[Log]
"""
kwargs: Dict[str, Any] = {}
if filter_query is not unset:
kwargs["filter_query"] = filter_query
if filter_indexes is not unset:
kwargs["filter_indexes"] = filter_indexes
if filter_from is not unset:
kwargs["filter_from"] = filter_from
if filter_to is not unset:
kwargs["filter_to"] = filter_to
if filter_storage_tier is not unset:
kwargs["filter_storage_tier"] = filter_storage_tier
if sort is not unset:
kwargs["sort"] = sort
if page_cursor is not unset:
kwargs["page_cursor"] = page_cursor
if page_limit is not unset:
kwargs["page_limit"] = page_limit
local_page_size = get_attribute_from_path(kwargs, "page_limit", 10)
endpoint = self._list_logs_get_endpoint
set_attribute_from_path(kwargs, "page_limit", local_page_size, endpoint.params_map)
pagination = {
"limit_value": local_page_size,
"results_path": "data",
"cursor_param": "page_cursor",
"cursor_path": "meta.page.after",
"endpoint": endpoint,
"kwargs": kwargs,
}
return endpoint.call_with_http_info_paginated(pagination)
def submit_log(
self,
body: HTTPLog,
*,
content_encoding: Union[ContentEncoding, UnsetType] = unset,
ddtags: Union[str, UnsetType] = unset,
) -> dict:
"""Send logs.
Send your logs to your Datadog platform over HTTP. Limits per HTTP request are:
* Maximum content size per payload (uncompressed): 5MB
* Maximum size for a single log: 1MB
* Maximum array size if sending multiple logs in an array: 1000 entries
Any log exceeding 1MB is accepted and truncated by Datadog:
* For a single log request, the API truncates the log at 1MB and returns a 2xx.
* For a multi-logs request, the API processes all logs, truncates only logs larger than 1MB, and returns a 2xx.
Datadog recommends sending your logs compressed.
Add the ``Content-Encoding: gzip`` header to the request when sending compressed logs.
Log events can be submitted with a timestamp that is up to 18 hours in the past.
The status codes answered by the HTTP API are:
* 202: Accepted: the request has been accepted for processing
* 400: Bad request (likely an issue in the payload formatting)
* 401: Unauthorized (likely a missing API Key)
* 403: Permission issue (likely using an invalid API Key)
* 408: Request Timeout, request should be retried after some time
* 413: Payload too large (batch is above 5MB uncompressed)
* 429: Too Many Requests, request should be retried after some time
* 500: Internal Server Error, the server encountered an unexpected condition that prevented it from fulfilling the request, request should be retried after some time
* 503: Service Unavailable, the server is not ready to handle the request probably because it is overloaded, request should be retried after some time
:param body: Log to send (JSON format).
:type body: HTTPLog
:param content_encoding: HTTP header used to compress the media-type.
:type content_encoding: ContentEncoding, optional
:param ddtags: Log tags can be passed as query parameters with ``text/plain`` content type.
:type ddtags: str, optional
:rtype: dict
"""
kwargs: Dict[str, Any] = {}
if content_encoding is not unset:
kwargs["content_encoding"] = content_encoding
if ddtags is not unset:
kwargs["ddtags"] = ddtags
kwargs["body"] = body
return self._submit_log_endpoint.call_with_http_info(**kwargs)