Name | flogging JSON |
Version |
1.0.1
JSON |
| download |
home_page | None |
Summary | flogging nice logging formatting and structured logging. |
upload_time | 2025-02-18 10:55:13 |
maintainer | None |
docs_url | None |
author | fragiletech |
requires_python | None |
license | MIT |
keywords |
logging
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Structured Logging Documentation
This module provides structured logging capabilities that allow you to output either human-readable
logs or JSON-formatted structured logs. These features are especially useful for debugging in
development and for generating easily parseable logs in production environments.
## Overview
The logging setup supports two main modes:
1. **Human-readable logs**: Provides logs in a colored, properly formatted output for local development.
2. **Structured logs**: Outputs logs as JSON objects, with each log record represented as a single line. This mode is ideal for production environments where logs need to be processed by log aggregation systems.
### Key Functions
- `add_logging_args()`: Adds logging configuration options to an `argparse.ArgumentParser` instance, making it easy to configure logging via command-line arguments.
- `setup()`: Directly configures logging by specifying the logging level and format (structured or human-readable).
- `set_context()`: Assigns a custom context to be logged with each message in structured logging mode.
- `log_multipart()`: Logs large messages by splitting them into chunks and compressing the data.
---
## Usage
### Basic Setup with `setup()`
To initialize logging in your application, call the `setup()` function. You can specify whether to enable structured logging or use the default human-readable format.
```python
from flogging import flogging
# Initialize logging
flogging.setup(level="INFO", structured=False) # Human-readable format
# Enable structured logging for production
flogging.setup(level="INFO", structured=True)
```
#### Parameters for `setup()`
- `level`: The logging level (e.g., "DEBUG", "INFO", "WARNING", "ERROR"). This can be a string or an integer.
- `structured`: A boolean that controls whether structured logging is enabled. Set to `True` for JSON logs.
- `allow_trailing_dot`: Prevents log messages from having a trailing dot unless explicitly allowed.
- `level_from_msg`: An optional function to dynamically change the logging level based on the content of the message.
- `ensure_utf8_streams`: Ensures that `stdout` and `stderr` use UTF-8 encoding.
### Adding Logging Arguments with `add_logging_args()`
You can easily integrate logging configuration options into your command-line interface using `add_logging_args()`. This function automatically adds command-line flags for setting the logging level and format.
#### Command-Line Flags
- `--log-level`: Set the logging verbosity (e.g., "DEBUG", "INFO", "WARNING").
- `--log-structured`: Enable structured logging (outputs logs in JSON format).
#### Environment Variables
You can also set the logging level and format using environment variables:
- `LOG_LEVEL`: Set the logging level.
- `LOG_STRUCTURED`: Enable structured logging.
```bash
LOG_LEVEL=DEBUG LOG_STRUCTURED=1 python my_app.py
```
### Structured Logging in Production
To enable structured logging (JSON logs), you can either set the `--log-structured` flag when running your application or configure it programmatically using `setup()`:
```bash
python my_app.py --log-level DEBUG --log-structured
```
In structured logging mode, each log entry is a JSON object with the following fields:
- `level`: The log level (e.g., "info", "error").
- `msg`: The log message.
- `source`: The file and line number where the log occurred.
- `time`: The timestamp of the log event.
- `thread`: The thread ID in a shortened format.
- `name`: The logger name.
Example structured log output:
```json
{
"level": "info",
"msg": "Application started",
"source": "app.py:42",
"time": "2023-09-23T14:22:35.000+00:00",
"thread": "f47c",
"name": "my_app"
}
```
### Custom Context with `set_context()`
In structured logging mode, you can attach additional context to each log message by calling `set_context()`. This context is logged alongside the usual fields, allowing you to track custom metadata.
```python
from flogging import flogging
# Set custom context
flogging.set_context({"user_id": "12345", "transaction_id": "abcde"})
# The custom context will now appear in each structured log message
```
### Handling Large Log Messages with `log_multipart()`
When logging large messages (e.g., serialized data or files), the `log_multipart()` function compresses and splits the message into smaller chunks to prevent issues with log size limits.
```python
import logging
from flogging import flogging
# Log a large message
flogging.log_multipart(logging.getLogger(), b"Large data to be logged")
```
This function will automatically split the message and log each chunk, ensuring the entire message is captured.
---
## Customizing the Logging Format
### Human-Readable Logs
By default, when not using structured logging, logs are output in a colored format, with color-coding based on the log level:
- **DEBUG**: Gray
- **INFO**: Cyan
- **WARNING**: Yellow
- **ERROR/CRITICAL**: Red
You can further customize the format by modifying the `AwesomeFormatter` class, which is used for formatting logs in human-readable mode. It also shortens thread IDs for easier readability.
### Enforcing Logging Standards
To enforce standards in your logging messages, such as preventing trailing dots in log messages, the module provides the `check_trailing_dot()` decorator. This can be applied to logging functions to raise an error if a message ends with a dot:
```python
from flogging import flogging
@flogging.check_trailing_dot
def log_message(record):
# Your custom logging logic
pass
```
---
## Best Practices
- Use **human-readable logs** in development for easier debugging.
- Switch to **structured logging** in production to enable easier parsing and aggregation by log management tools.
- **Set custom contexts** to include additional metadata in your logs, such as user IDs or request IDs, to improve traceability in production.
- **Use multipart logging** to handle large log messages that might otherwise exceed log size limits.
---
## Example
Here's a full example of how to use structured logging with command-line configuration:
```python
import argparse
import logging
from flogging.flogging import add_logging_args, set_context, setup
# Initialize logging
setup(level="INFO", structured=False) # Human-readable format
# Create argument parser
parser = argparse.ArgumentParser(description="My Application")
add_logging_args(parser)
# Parse arguments and setup logging
args = parser.parse_args()
# Set additional context for structured logging
set_context({"request_id": "123abc"})
# Start logging messages
logger = logging.getLogger("my_app")
logger.info("Application started")
```
Raw data
{
"_id": null,
"home_page": null,
"name": "flogging",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "logging",
"author": "fragiletech",
"author_email": "gmarkhor@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/9f/04/fdf4dda09d31491c0ac2d249c5e283a58d19a6120d09b48296a0cf653c0a/flogging-1.0.1.tar.gz",
"platform": null,
"description": "# Structured Logging Documentation\n\nThis module provides structured logging capabilities that allow you to output either human-readable \nlogs or JSON-formatted structured logs. These features are especially useful for debugging in \ndevelopment and for generating easily parseable logs in production environments.\n\n## Overview\n\nThe logging setup supports two main modes:\n\n1. **Human-readable logs**: Provides logs in a colored, properly formatted output for local development.\n2. **Structured logs**: Outputs logs as JSON objects, with each log record represented as a single line. This mode is ideal for production environments where logs need to be processed by log aggregation systems.\n\n### Key Functions\n\n- `add_logging_args()`: Adds logging configuration options to an `argparse.ArgumentParser` instance, making it easy to configure logging via command-line arguments.\n- `setup()`: Directly configures logging by specifying the logging level and format (structured or human-readable).\n- `set_context()`: Assigns a custom context to be logged with each message in structured logging mode.\n- `log_multipart()`: Logs large messages by splitting them into chunks and compressing the data.\n\n---\n\n## Usage\n\n### Basic Setup with `setup()`\n\nTo initialize logging in your application, call the `setup()` function. You can specify whether to enable structured logging or use the default human-readable format.\n\n```python\nfrom flogging import flogging\n\n# Initialize logging\nflogging.setup(level=\"INFO\", structured=False) # Human-readable format\n\n# Enable structured logging for production\nflogging.setup(level=\"INFO\", structured=True)\n```\n\n#### Parameters for `setup()`\n\n- `level`: The logging level (e.g., \"DEBUG\", \"INFO\", \"WARNING\", \"ERROR\"). This can be a string or an integer.\n- `structured`: A boolean that controls whether structured logging is enabled. Set to `True` for JSON logs.\n- `allow_trailing_dot`: Prevents log messages from having a trailing dot unless explicitly allowed.\n- `level_from_msg`: An optional function to dynamically change the logging level based on the content of the message.\n- `ensure_utf8_streams`: Ensures that `stdout` and `stderr` use UTF-8 encoding.\n\n### Adding Logging Arguments with `add_logging_args()`\n\nYou can easily integrate logging configuration options into your command-line interface using `add_logging_args()`. This function automatically adds command-line flags for setting the logging level and format.\n\n#### Command-Line Flags\n\n- `--log-level`: Set the logging verbosity (e.g., \"DEBUG\", \"INFO\", \"WARNING\").\n- `--log-structured`: Enable structured logging (outputs logs in JSON format).\n\n#### Environment Variables\n\nYou can also set the logging level and format using environment variables:\n\n- `LOG_LEVEL`: Set the logging level.\n- `LOG_STRUCTURED`: Enable structured logging.\n\n```bash\nLOG_LEVEL=DEBUG LOG_STRUCTURED=1 python my_app.py\n```\n\n### Structured Logging in Production\n\nTo enable structured logging (JSON logs), you can either set the `--log-structured` flag when running your application or configure it programmatically using `setup()`:\n\n```bash\npython my_app.py --log-level DEBUG --log-structured\n```\n\nIn structured logging mode, each log entry is a JSON object with the following fields:\n\n- `level`: The log level (e.g., \"info\", \"error\").\n- `msg`: The log message.\n- `source`: The file and line number where the log occurred.\n- `time`: The timestamp of the log event.\n- `thread`: The thread ID in a shortened format.\n- `name`: The logger name.\n\nExample structured log output:\n\n```json\n{\n \"level\": \"info\",\n \"msg\": \"Application started\",\n \"source\": \"app.py:42\",\n \"time\": \"2023-09-23T14:22:35.000+00:00\",\n \"thread\": \"f47c\",\n \"name\": \"my_app\"\n}\n```\n\n### Custom Context with `set_context()`\n\nIn structured logging mode, you can attach additional context to each log message by calling `set_context()`. This context is logged alongside the usual fields, allowing you to track custom metadata.\n\n```python\nfrom flogging import flogging\n\n# Set custom context\nflogging.set_context({\"user_id\": \"12345\", \"transaction_id\": \"abcde\"})\n\n# The custom context will now appear in each structured log message\n```\n\n### Handling Large Log Messages with `log_multipart()`\n\nWhen logging large messages (e.g., serialized data or files), the `log_multipart()` function compresses and splits the message into smaller chunks to prevent issues with log size limits.\n\n```python\nimport logging\nfrom flogging import flogging\n\n# Log a large message\nflogging.log_multipart(logging.getLogger(), b\"Large data to be logged\")\n```\n\nThis function will automatically split the message and log each chunk, ensuring the entire message is captured.\n\n---\n\n## Customizing the Logging Format\n\n### Human-Readable Logs\n\nBy default, when not using structured logging, logs are output in a colored format, with color-coding based on the log level:\n\n- **DEBUG**: Gray\n- **INFO**: Cyan\n- **WARNING**: Yellow\n- **ERROR/CRITICAL**: Red\n\nYou can further customize the format by modifying the `AwesomeFormatter` class, which is used for formatting logs in human-readable mode. It also shortens thread IDs for easier readability.\n\n### Enforcing Logging Standards\n\nTo enforce standards in your logging messages, such as preventing trailing dots in log messages, the module provides the `check_trailing_dot()` decorator. This can be applied to logging functions to raise an error if a message ends with a dot:\n\n```python\nfrom flogging import flogging\n\n@flogging.check_trailing_dot\ndef log_message(record):\n # Your custom logging logic\n pass\n```\n\n---\n\n## Best Practices\n\n- Use **human-readable logs** in development for easier debugging.\n- Switch to **structured logging** in production to enable easier parsing and aggregation by log management tools.\n- **Set custom contexts** to include additional metadata in your logs, such as user IDs or request IDs, to improve traceability in production.\n- **Use multipart logging** to handle large log messages that might otherwise exceed log size limits.\n\n---\n\n## Example\n\nHere's a full example of how to use structured logging with command-line configuration:\n\n```python\nimport argparse\nimport logging\nfrom flogging.flogging import add_logging_args, set_context, setup\n\n# Initialize logging\nsetup(level=\"INFO\", structured=False) # Human-readable format\n# Create argument parser\nparser = argparse.ArgumentParser(description=\"My Application\")\nadd_logging_args(parser)\n\n# Parse arguments and setup logging\nargs = parser.parse_args()\n\n# Set additional context for structured logging\nset_context({\"request_id\": \"123abc\"})\n\n# Start logging messages\nlogger = logging.getLogger(\"my_app\")\nlogger.info(\"Application started\")\n```\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "flogging nice logging formatting and structured logging.",
"version": "1.0.1",
"project_urls": null,
"split_keywords": [
"logging"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "adc26af4a402a1b46d63efde8849648df97545759cd034ad223dbd4edb735ffa",
"md5": "a5a034d05825b52f3218fcccf30e7fa5",
"sha256": "cbe9ea2bc4679be3133ee638eccb1788cb6d01340d446510b6ccbe38b5d8b234"
},
"downloads": -1,
"filename": "flogging-1.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a5a034d05825b52f3218fcccf30e7fa5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 10479,
"upload_time": "2025-02-18T10:55:12",
"upload_time_iso_8601": "2025-02-18T10:55:12.077775Z",
"url": "https://files.pythonhosted.org/packages/ad/c2/6af4a402a1b46d63efde8849648df97545759cd034ad223dbd4edb735ffa/flogging-1.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f04fdf4dda09d31491c0ac2d249c5e283a58d19a6120d09b48296a0cf653c0a",
"md5": "982c2255bc8cb570749b930499adb00a",
"sha256": "ca84479eae4f97e17ecffeabe962ed9ee269c588cc477f8b6df2989af3f7b707"
},
"downloads": -1,
"filename": "flogging-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "982c2255bc8cb570749b930499adb00a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13181,
"upload_time": "2025-02-18T10:55:13",
"upload_time_iso_8601": "2025-02-18T10:55:13.051998Z",
"url": "https://files.pythonhosted.org/packages/9f/04/fdf4dda09d31491c0ac2d249c5e283a58d19a6120d09b48296a0cf653c0a/flogging-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-18 10:55:13",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "flogging"
}