Logging handlers for publishing the logs to Cloud Pub/Sub
Project description
Logging handlers for publishing the logs to Cloud Pub/Sub.
You can use the pubsub_logging.PubsubHandler or pubsub_logging.AsyncPubsubHandler to publish the logs to Cloud Pub/Sub. You can use this module with the standard Python logging module. It’s recommended that you use AsyncPubsubHandler. PubsubHandler exists only for backward compatibility.
Supported version
Python 2.7 and Python 3.4 are supported.
Installation
$ pip install pubsub-logging
How to use
Here is an example configuration file.
[loggers]
keys=root
[handlers]
keys=asyncPubsubHandler
[formatters]
keys=simpleFormatter
[logger_root]
level=NOTSET
handlers=asyncPubsubHandler
[handler_asyncPubsubHandler]
class=pubsub_logging.AsyncPubsubHandler
level=DEBUG
formatter=simpleFormatter
# Replace {project-name} and {topic-name} with actual ones.
# The second argument indicates number of workers.
args=('projects/{project-name}/topics/{topic-name}', 10)
[formatter_simpleFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
How to use this config file.
logging.config.fileConfig(os.path.join('examples', 'logging.conf'))
logger = logging.getLogger('root')
logger.info('My first message.')
Here is a dynamic usage example.
pubsub_handler = AsyncPubsubHandler(topic=topic)
pubsub_handler.setFormatter(
logging.Formatter(
'%(asctime)s - %(name)s - %(levelname)s - %(message)s'))
logger = logging.getLogger('root')
logger.setLevel(logging.DEBUG)
logger.addHandler(pubsub_handler)
logger.info('My first message.')
The logs are kept in a buffer first, then moved to the process safe queue, and then the background child processes automatically pick up and send them to Cloud Pub/Sub. The flush call blocks until all of the logs are sent to Cloud Pub/Sub.
Authentication
The module uses the Application Default Credentials. You can configure the authentication as follows.
Authentication on App Engine
It should work out of the box. If you’re getting an authorization error, please make sure that your App Engine service account has an Editor or greater permission on your Cloud project.
Authentication on Google Compute Engine
When creating a new instance, please add the Cloud Pub/Sub scope https://www.googleapis.com/auth/pubsub to the service account of the instance.
Authentication anywhere else
As the documentation suggests, create a new service account and download its JSON key file, then set the environment variable GOOGLE_APPLICATION_CREDENTIALS pointing to the JSON key file. Please note that this service account must have Editor or greater permissions on your Cloud project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pubsub-logging-0.2.1.tar.gz
.
File metadata
- Download URL: pubsub-logging-0.2.1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 986de04fdc472bd306071e2783ed06fd4604ff4190f72057877aa3f0be930cbb |
|
MD5 | 5ee02c7c75e3c2b0c766e75a4b0f7d16 |
|
BLAKE2b-256 | 1b5d14708353ca131f5f746c06aaf90c9492287df2dbd755fa0ce8f9914dea82 |