A Python package for storing application logs in GCP Cloud Logging.
Project description
gcp-lolo
GCP Cloud Logging Python logger
The idea behind this package is to provide the simplest way to log messages to Google Cloud Logging, without having to worry about the details of setting up the Google Cloud Logging client and/or affecting the current application structure.
Installation
pip install gcp-lolo
Usage
#1: Using a python logger
The recommended and idiomatic way to use this package is to create a logging configuration and initialize a logger in your application and in any other sub module(s) as per Python's Logging HOWTO.
Defining the logging configuration via a INI file
- Create a file
logging.iniin your project root folder with the following content:
[loggers]
keys=root
[handlers]
keys=gcp_handler
[formatters]
keys=
[logger_root]
level=INFO
handlers=gcp_handler
[handler_gcp_handler]
class=gcp_lolo.GCPLoggingHandler
level=DEBUG
kwargs={"name": "my-test-app", "gcp_credentials_path": "./gcp_credentials.json"}
- In your application code, initialize the logger as follows:
import logging
from logging.config import fileConfig
fileConfig('logging.ini')
logger = logging.getLogger(__name__)
# use the logger as usual
logger.debug('Unuseful message in production')
logger.info('This is an info message')
logger.warning('This is a warning')
logger.error('This is an error')
Defining the logging configuration via the dictConfig method
With the dictConfig method you are able to arrange the configuration as you wish.
In the following example, the configuration is written in YAML.
- Write the configuration in a
logging.yamlfile:
version: 1
disable_existing_loggers: false
handlers:
gcp_handler:
class: gcp_lolo.GCPLoggingHandler
level: INFO
name: my-test-app
gcp_credentials_path: "./gcp_credentials.json"
# gcp_credentials_json: "{somecredentialshere}" # alternative to gcp_credentials_path
loggers:
root:
level: INFO
handlers: [gcp_handler]
- In your application code, initialize the logger as follows:
import logging
import logging.config
import yaml
with open('logging.yaml', 'r') as f:
config = yaml.safe_load(f.read())
logging.config.dictConfig(config)
logger = logging.getLogger(__name__)
# use the logger as usual
logger.debug('Unuseful message in production')
logger.info('This is an info message')
logger.warning('This is a warning')
logger.error('This is an error')
Of course, please remember to install PyYAML to be able to read the YAML configuration file.
#2: Redirect stdout to GCP Logging
This method is recommended when you have a lot of code that uses print and raise statements, and you don't want to change it.
from gcp_lolo import setup_gcp_logging
setup_gcp_logging('my-logger')
print('This is a test message')
raise Exception('This is a test exception')
⚠ Important: This method will NOT work in case of any submodules that initialize their own logger. In that case, you should use the first method instead.
Authentication
As the package exports logs on GCP Logging, you need some GCP credentials. You can provide them in the following ways:
- By setting either one of the following environment variables:
GOOGLE_APPLICATION_CREDENTIALS: the path to the local GCP credentials file, orGCP_CREDENTIALS_JSON: a string containing the GCP credentials JSON
- By passing the one of the following parameters to the
GCPLoggingHandlerclass:gcp_credentials_path: the path to the local GCP credentials file, orgcp_credentials_json: a string containing the GCP credentials JSON
Examples
For more examples, see the examples folder.
Additional Information
Multiple Handlers
Please note: by default, gcp-lolo will NOT print anything to the console. If you want to print logs to the stdout as well, you can add another handler to the logger.
The following is an example of a logging.ini file that uses two different handlers:
[loggers]
keys=root
[handlers]
keys=gcp_handler,console_handler
[formatters]
keys=stdOutMessageFormatter
[logger_root]
level=INFO
handlers=gcp_handler,console_handler
[handler_gcp_handler]
class=gcp_lolo.GCPLoggingHandler
level=INFO
kwargs={"name": "my-app-with-multiple-logging-handlers", "gcp_credentials_path": "./gcp_credentials.json"}
[handler_console_handler]
class=logging.StreamHandler
level=DEBUG
formatter=stdOutMessageFormatter
[formatter_stdOutMessageFormatter]
format=%(asctime)s - %(levelname)s - %(name)s - %(message)s
Of course, this applies to any other logging configuration method you may be using.
Labeling messages
You can add labels to your messages by passing a labels dictionary to the kwargs of the GCPLoggingHandler in the logging.ini file.
Example (pay attention to the handler_gcp_handler kwargs):
[loggers]
keys=root
[handlers]
keys=gcp_handler
[formatters]
keys=
[logger_root]
level=INFO
handlers=gcp_handler
[handler_gcp_handler]
class=gcp_lolo.GCPLoggingHandler
level=DEBUG
kwargs={"name": "my-test-app", "gcp_credentials_path": "./gcp_credentials.json", "labels": {"environment": "staging", "app_version": "1.0.0"}}
Reference
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gcp_lolo-2.0.1.tar.gz.
File metadata
- Download URL: gcp_lolo-2.0.1.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e82088a01d2f2a4ebc15425c2913f76ab7955a01433239fee2c07f2988d43921
|
|
| MD5 |
9dc47e6749c9d60543beb00603563f11
|
|
| BLAKE2b-256 |
17f71789700bb81b0d517d25a76169092aec8da05249ff2ef241a94af110f4a2
|
File details
Details for the file gcp_lolo-2.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: gcp_lolo-2.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f69a844472d5d9462b2ab0dc90db428b7d9bdb1649ec6d3adcb2fb3349af2ef
|
|
| MD5 |
4e08307192f6beea06d9a7b69dd8b99e
|
|
| BLAKE2b-256 |
8bf9c4cf9b02726a90d8e5998e368747fac84026c3957bd3393c4c227f47c9d4
|