This repository was archived by the owner on Feb 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathlogger.py
More file actions
431 lines (352 loc) · 15.6 KB
/
logger.py
File metadata and controls
431 lines (352 loc) · 15.6 KB
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
# Copyright 2016 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Define API Loggers."""
import collections
from google.cloud.logging_v2._helpers import _add_defaults_to_filter
from google.cloud.logging_v2.entries import LogEntry
from google.cloud.logging_v2.entries import ProtobufEntry
from google.cloud.logging_v2.entries import StructEntry
from google.cloud.logging_v2.entries import TextEntry
from google.cloud.logging_v2.resource import Resource
import google.protobuf.message
_GLOBAL_RESOURCE = Resource(type="global", labels={})
_OUTBOUND_ENTRY_FIELDS = ( # (name, default)
("type_", None),
("log_name", None),
("payload", None),
("labels", None),
("insert_id", None),
("severity", None),
("http_request", None),
("timestamp", None),
("resource", _GLOBAL_RESOURCE),
("trace", None),
("span_id", None),
("trace_sampled", None),
("source_location", None),
)
class Logger(object):
"""Loggers represent named targets for log entries.
See https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.logs
"""
def __init__(self, name, client, *, labels=None, resource=_GLOBAL_RESOURCE):
"""
Args:
name (str): The name of the logger.
client (~logging_v2.client.Client):
A client which holds credentials and project configuration
for the logger (which requires a project).
resource (~logging_v2.Resource): a monitored resource object
representing the resource the code was run on.
labels (Optional[dict]): Mapping of default labels for entries written
via this logger.
"""
self.name = name
self._client = client
self.labels = labels
self.default_resource = resource
@property
def client(self):
"""Clent bound to the logger."""
return self._client
@property
def project(self):
"""Project bound to the logger."""
return self._client.project
@property
def full_name(self):
"""Fully-qualified name used in logging APIs"""
return f"projects/{self.project}/logs/{self.name}"
@property
def path(self):
"""URI path for use in logging APIs"""
return f"/{self.full_name}"
def _require_client(self, client):
"""Check client or verify over-ride. Also sets ``parent``.
Args:
client (Union[None, ~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
Returns:
~logging_v2.client.Client: The client passed in
or the currently bound client.
"""
if client is None:
client = self._client
return client
def batch(self, *, client=None):
"""Return a batch to use as a context manager.
Args:
client (Union[None, ~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
Returns:
Batch: A batch to use as a context manager.
"""
client = self._require_client(client)
return Batch(self, client)
def _do_log(self, client, _entry_class, payload=None, **kw):
"""Helper for :meth:`log_empty`, :meth:`log_text`, etc."""
client = self._require_client(client)
# Apply defaults
kw["log_name"] = kw.pop("log_name", self.full_name)
kw["labels"] = kw.pop("labels", self.labels)
kw["resource"] = kw.pop("resource", self.default_resource)
if payload is not None:
entry = _entry_class(payload=payload, **kw)
else:
entry = _entry_class(**kw)
api_repr = entry.to_api_repr()
client.logging_api.write_entries([api_repr])
def log_empty(self, *, client=None, **kw):
"""Log an empty message via a POST request
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/write
Args:
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
kw (Optional[dict]): additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self._do_log(client, LogEntry, **kw)
def log_text(self, text, *, client=None, **kw):
"""Log a text message via a POST request
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/write
Args:
text (str): the log message
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
kw (Optional[dict]): additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self._do_log(client, TextEntry, text, **kw)
def log_struct(self, info, *, client=None, **kw):
"""Log a structured message via a POST request
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/write
Args:
info (dict): the log entry information
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
kw (Optional[dict]): additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self._do_log(client, StructEntry, info, **kw)
def log_proto(self, message, *, client=None, **kw):
"""Log a protobuf message via a POST request
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/list
Args:
message (google.protobuf.message.Message):
The protobuf message to be logged.
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
kw (Optional[dict]): additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self._do_log(client, ProtobufEntry, message, **kw)
def log(self, message=None, *, client=None, **kw):
"""Log an arbitrary message via a POST request.
Type will be inferred based on the input message.
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/list
Args:
message (Optional[str or dict or google.protobuf.Message]): The message. to log
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current sink.
kw (Optional[dict]): additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
entry_type = LogEntry
if isinstance(message, google.protobuf.message.Message):
entry_type = ProtobufEntry
elif isinstance(message, collections.abc.Mapping):
entry_type = StructEntry
elif isinstance(message, str):
entry_type = TextEntry
self._do_log(client, entry_type, message, **kw)
def delete(self, logger_name=None, *, client=None):
"""Delete all entries in a logger via a DELETE request
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/projects.logs/delete
Args:
logger_name (Optional[str]): The resource name of the log to delete:
::
"projects/[PROJECT_ID]/logs/[LOG_ID]"
"organizations/[ORGANIZATION_ID]/logs/[LOG_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]"
"folders/[FOLDER_ID]/logs/[LOG_ID]"
``[LOG_ID]`` must be URL-encoded. For example,
``"projects/my-project-id/logs/syslog"``,
``"organizations/1234567890/logs/cloudresourcemanager.googleapis.com%2Factivity"``.
If not passed, defaults to the project bound to the client.
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current logger.
"""
client = self._require_client(client)
if logger_name is None:
logger_name = self.full_name
client.logging_api.logger_delete(logger_name)
def list_entries(
self,
*,
resource_names=None,
filter_=None,
order_by=None,
page_size=None,
page_token=None,
):
"""Return a page of log entries.
See
https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/list
Args:
resource_names (Optional[Sequence[str]]): Names of one or more parent resources
from which to retrieve log entries:
::
"projects/[PROJECT_ID]"
"organizations/[ORGANIZATION_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]"
"folders/[FOLDER_ID]"
If not passed, defaults to the project bound to the client.
filter_ (Optional[str]): a filter expression. See
https://cloud.google.com/logging/docs/view/advanced_filters
By default, a 24 hour filter is applied.
order_by (Optional[str]): One of :data:`~logging_v2.ASCENDING`
or :data:`~logging_v2.DESCENDING`.
page_size (Optional[int]):
Optional. The maximum number of entries in each page of results
from this request. Non-positive values are ignored. Defaults
to a sensible value set by the API.
page_token (Optional[str]):
Optional. If present, return the next batch of entries, using
the value, which must correspond to the ``nextPageToken`` value
returned in the previous response. Deprecated: use the ``pages``
property of the returned iterator instead of manually passing
the token.
Returns:
Iterator[~logging_v2.entries.LogEntry]
"""
if resource_names is None:
resource_names = [f"projects/{self.project}"]
log_filter = f"logName={self.full_name}"
if filter_ is not None:
filter_ = f"{filter_} AND {log_filter}"
else:
filter_ = log_filter
filter_ = _add_defaults_to_filter(filter_)
return self.client.list_entries(
resource_names=resource_names,
filter_=filter_,
order_by=order_by,
page_size=page_size,
page_token=page_token,
)
class Batch(object):
def __init__(self, logger, client, *, resource=None):
"""Context manager: collect entries to log via a single API call.
Helper returned by :meth:`Logger.batch`
Args:
logger (logging_v2.logger.Logger):
the logger to which entries will be logged.
client (~logging_V2.client.Cilent):
The client to use.
resource (Optional[~logging_v2.resource.Resource]):
Monitored resource of the batch, defaults
to None, which requires that every entry should have a
resource specified. Since the methods used to write
entries default the entry's resource to the global
resource type, this parameter is only required
if explicitly set to None. If no entries' resource are
set to None, this parameter will be ignored on the server.
"""
self.logger = logger
self.entries = []
self.client = client
self.resource = resource
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
if exc_type is None:
self.commit()
def log_empty(self, **kw):
"""Add a entry without payload to be logged during :meth:`commit`.
Args:
kw (Optional[dict]): Additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self.entries.append(LogEntry(**kw))
def log_text(self, text, **kw):
"""Add a text entry to be logged during :meth:`commit`.
Args:
text (str): the text entry
kw (Optional[dict]): Additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self.entries.append(TextEntry(payload=text, **kw))
def log_struct(self, info, **kw):
"""Add a struct entry to be logged during :meth:`commit`.
Args:
info (dict): The struct entry,
kw (Optional[dict]): Additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self.entries.append(StructEntry(payload=info, **kw))
def log_proto(self, message, **kw):
"""Add a protobuf entry to be logged during :meth:`commit`.
Args:
message (google.protobuf.Message): The protobuf entry.
kw (Optional[dict]): Additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
self.entries.append(ProtobufEntry(payload=message, **kw))
def log(self, message=None, **kw):
"""Add an arbitrary message to be logged during :meth:`commit`.
Type will be inferred based on the input message.
Args:
message (Optional[str or dict or google.protobuf.Message]): The message. to log
kw (Optional[dict]): Additional keyword arguments for the entry.
See :class:`~logging_v2.entries.LogEntry`.
"""
entry_type = LogEntry
if isinstance(message, google.protobuf.message.Message):
entry_type = ProtobufEntry
elif isinstance(message, collections.abc.Mapping):
entry_type = StructEntry
elif isinstance(message, str):
entry_type = TextEntry
self.entries.append(entry_type(payload=message, **kw))
def commit(self, *, client=None):
"""Send saved log entries as a single API call.
Args:
client (Optional[~logging_v2.client.Client]):
The client to use. If not passed, falls back to the
``client`` stored on the current batch.
"""
if client is None:
client = self.client
kwargs = {"logger_name": self.logger.full_name}
if self.resource is not None:
kwargs["resource"] = self.resource._to_dict()
if self.logger.labels is not None:
kwargs["labels"] = self.logger.labels
entries = [entry.to_api_repr() for entry in self.entries]
client.logging_api.write_entries(entries, **kwargs)
del self.entries[:]