Custom Logger
The ESLogger is a custom Python logger designed to simultaneously send log records to Elasticsearch for FourteenIP's needs as well as print them to the terminal for the end user.
It extends Python’s built-in logging.Logger
to capture accurate caller information (file, function, and line number) and to support flexible logging output.
Overview
The ESLogger is built to:
Send logs to Elasticsearch: Every log message is indexed in Elasticsearch using the provided cloud credentials.
Print logs to the terminal: A built-in console handler outputs logs in a human-friendly format.
Capture correct caller information: Overrides the default logging behavior so that the file, function, and line number reported are from the actual logging call site.
Features
Dual Logging Output:
Elasticsearch: Logs are structured and sent to a specified Elasticsearch index.
Terminal: Logs are output to the terminal with a configurable format.
Caller Context Accuracy: The logger overrides the internal
_log()
method with an increasedstacklevel
to ensure that the origin (file, function, and line) of the log is captured correctly.Custom Fields: The log document sent to Elasticsearch includes a unique GUID (generated on instantiation) and user information.
Configuration Options
When instantiating an ESLogger, the following parameters must be provided:
name (
str
):Description: The name of the logger.
Default:
"OS"
level (
int
):Description: The base logging level for the logger (as defined in Python’s
logging
module).Default:
logging.INFO
cloud_id (
str
):Description: The Elasticsearch Cloud ID required to connect to your Elasticsearch deployment.
Required: Yes
api_key (
tuple
):Description: A tuple containing the API key and API key ID for Elasticsearch authentication.
Required: Yes
index (
str
):Description: The Elasticsearch index to which log documents will be sent.
username (
str
):Description: The username to be included in the log document under the
user
field.
Note: If cloud_id
or api_key
are not provided, the logger will raise a ValueError
.
How It Works
Initialization: The logger is initialized with the provided Elasticsearch connection parameters and creates:
An Elasticsearch client using
cloud_id
andapi_key
.A unique GUID (
uuid
) to be included with every log.A console (terminal) handler with a specified formatter.
Handling Log Records: The overridden
handle()
method processes each log record in two steps:Console Output: The record is forwarded to the
StreamHandler
to print the log to the terminal.Elasticsearch Output: A structured document is built using fields such as:
@timestamp
: The log timestamp.message
: The log message.log
: A nested object containing log level, logger name, and origin (file name, line number, and function name).custom
: Contains the unique GUID.user
: Contains the username.
This document is then indexed in Elasticsearch.
Caller Context: The
_log()
method is overridden with an increasedstacklevel
(set to 2) so that the logging framework correctly identifies the real calling context rather than the logger’s internal methods.
How to Use
ESLogger Class
Use ESLogger with Odin's Spear
Terminal Output
Last updated
Was this helpful?