Micropython library for sending logs to Loki
Project description
micropython-loki
Introduction
Micropython library for sending logs to Loki
Installation
The library can be installed using upip or mip. Ensure that the device is connected to the network.
Installation using upip (Micropython < 1.19)
import upip
upip.install('micropython-loki')
Installation using mip (Micropython >= 1.19)
Py-file
import mip
mip.install('github:olivergregorius/micropython_loki/micropython_loki.py')
Cross-compiled mpy-file
NOTE: Set the release_version variable accordingly.
import mip
release_version='vX.Y.Z'
mip.install(f'https://github.com/olivergregorius/micropython_loki/releases/download/{release_version}/micropython_loki.mpy')
Usage
This library provides two methods for
- adding log messages to the stack (
log
) and - pushing the logs to a Loki instance (
push_logs
).
NOTE: Each log message is applied with the current system's timestamp. Please be sure the RTC of the device is set correctly.
At first the Loki-instance must be initialized providing the Loki base-URL:
from micropython_loki import Loki
loki = Loki('https://loki.example.org:3100')
The following additional arguments may be provided:
Argument | Description | Default |
---|---|---|
log_labels | List of LogLabel instances. Each LogLabel is a key-value pair to enrich each log message with a label. |
[] |
default_log_level | Set the default log level. Instance of LogLevel . |
LogLevel.INFO |
timeout | Timeout in seconds for calls against the Loki-API. | 5 |
max_stack_size | Maximum size of the log stack. If the stack size exceeds this value, the 'oldest' log message is dropped. | 50 |
min_push_log_level | Minimum log level of log messages to be pushed to Loki. | LogLevel.DEBUG |
The following example creates a Loki-instance for calling the Loki-API at 'https://loki.example.org:3100', adding the labels 'app: important-app' and 'version: 1.0.0' to each log message, setting the default log level to 'INFO', setting the timeout to 5 seconds, setting the max stack size to 20 and only pushing logs to Loki with LogLevel.WARN or LogLevel.ERROR.
from micropython_loki import Loki, LogLabel, LogLevel
loki = Loki('https://loki.example.org:3100', [LogLabel('app', 'important-app'), LogLabel('version', '1.0.0')], LogLevel.INFO, 5, 20, LogLevel.WARN)
To add a log message to the log-stack the method log
is called, it takes the arguments message
(required) containing the log message and log_level
(optional) for setting the log level for that log message:
...
loki.log('Calling do_something')
result = do_something()
if result == 1:
loki.log('Something went wrong', LogLevel.WARN)
...
The example above adds one log message of level 'INFO' (as set by default during Loki instantiation, the LogLevel can be omitted in the log
call) and one log
message of level 'WARN' (in case the value of result is 1).
Convenience methods have been added to simplify adding log messages to the stack:
loki.debug('Message with LogLevel.DEBUG')
loki.info('Message with LogLevel.INFO')
loki.warn('Message with LogLevel.WARN')
loki.error('Message with LogLevel.ERROR')
To push the logs to Loki push_logs
is called, this method takes no arguments:
...
loki.push_logs()
...
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
File details
Details for the file micropython_loki-1.1.2.tar.gz
.
File metadata
- Download URL: micropython_loki-1.1.2.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7f75c6b90df4d1570bdf4b33b74c04ab622516b29cd0eb6a344d2fecd731ae6 |
|
MD5 | aca984f77e43efb81e5c7f183b794b77 |
|
BLAKE2b-256 | 02c23f5e72c54daf5ef6fbae944372414e09391f4025ce52244c602125f48d04 |