Custom logging handler for AskLora projects
Project description
LORA Logger
This package contains both the customised handler for saving the logs into a elasticsearch database, and a factory for creating customised loggers that can use that handler.
The customised handler will forward the logs to an existing logging service through our own celery service. This logging service will handle the logs and input them into the database. This is done to unionise the logs into a single database.
Diagram
flowchart LR
services["Services\n<small>All backend projects\nthat need the logging\nsystem</small>"]-->producer[[Producer]]
subgraph "LoraLogger package"
producer-->queue[Queue]
end
queue-->consumer[[Consumer]]
subgraph "AskLora logger service"
consumer-->database[(<small>ElasticSearch\nDatabase</small>)]
end
How to use
Currently, this package exports a logging handler. Loggers with this handler will be automatically send the records to the elasticsearch server set using the environment variable.
Package installation
there are two ways to install this pacakge
- install the package locally. first, build the project:
poetry build
then you can install using pippip install /path/to/logger/dist/loralogger-0.3.0-py3-none-any.whl
or if youre using poetry, use:poetry add /path/to/logger/dist/loralogger-0.3.0-py3-none-any.tar.gz
- Install the package from pip
pip install loralogger
Using this package
First, set these environment variables:
# Set amqp backend
AMQP_BROKER=localhost
AMQP_PORT=5672
AMQP_USER=rabbitmq
AMQP_PASSWORD=rabbitmq
# set results backend
REDIS_HOST=localhost
REDIS_PORT=6379
# set sentinel mode
REDIS_SENTINEL=False # or True
Then you can use the logger in two ways:
-
Use dedicated logger instances for specific projects. These will be automatically log to Elasticsearch (i.e. using the ESHandler)
- import the from loralogger logger factory
from loralogger import LoggerInstances, LoraLogger
-
get the logger instance with the
LoggerInstances
enum as label (preferred), or you can also use other labels by passing a stringaskloraxalpaca_logger = LoraLogger.get_logger( LoggerInstances.ASKLORAXALPACA, log_to_console=True, )
-
Use the logger instance
askloraxalpaca_logger.info("This works!")
-
Use the handler directly to your own logger instance:
-
import the handler
from loralogger import LogToESHandler
-
initialise logging instance
import logging backend_logger = logging.getLogger("backend")
-
Create the handler instance, initialise with the desired LoggerInstances
logger_instance = LoggerInstances.LEDGER handler = LogToESHandler(logger_instance)
-
add the handler instance to the logger
backend_logger.addHandler(handler)
-
And finally, use the logger
backend_logger.info("This is an info")
-
Features
- Send your logs to Elasticsearch by setting
send_to_es
argument toTrue
when initialising your logger, i.e.logger = LoraLogger.getLogger("backend", log_to_es=True)
- Normally, sending logs to Elasticsearch will use RabbitMQ to not block the running operation, but you can skip it and send the logs directly using Elasticsearch API by setting
skip_queue
argument toTrue
:logger = LoraLogger.get_logger( 'ledger', log_to_es=True, skip_queue=True, )
- You can use
event
andid
to categorise your logs further in Elasticsearch:logger.info('Job started', event='calling-api', id='job-1)
Notes
- if the pip installation fails, check this link https://github.com/celery/librabbitmq/issues/131#issuecomment-661884151
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
Built Distribution
File details
Details for the file loralogger-0.3.7.tar.gz
.
File metadata
- Download URL: loralogger-0.3.7.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0b3 CPython/3.9.13 Linux/5.15.0-52-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81aa794fb3fe440d698f8e6bd04fce28a65de51675872e23e854e96a454b6d4d |
|
MD5 | 2cb6f60bc2d3178bf2cb260c8dcbea4e |
|
BLAKE2b-256 | 865f027fd8d8b5a6cfe8a7f67a45345f059157af1c75a75fb6930b811c0d1566 |
File details
Details for the file loralogger-0.3.7-py3-none-any.whl
.
File metadata
- Download URL: loralogger-0.3.7-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0b3 CPython/3.9.13 Linux/5.15.0-52-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1df8110b636cf3b764422861f4e3f856a26fe50ee8c63d9bde3a9ca8aa739edb |
|
MD5 | a129c3cd5e92d8a2f3f41620479a2ad1 |
|
BLAKE2b-256 | 9139b7657903fa50d60de683b35fc0fb798d8b6c0a24ba9e63ac1c59ed600c9c |