A Python client interacting with Grafana Loki.
Project description
loki-client
A Python client interacting with Grafana Loki.
Quickstart
Install:
pip install loki-client
Usage:
# example.py
from loki_client import LokiClient
from loki_client import SUPPORTED_DIRECTION
loki_url = 'http://localhost:3100'
loki_client = LokiClient(url=loki_url, disable_ssl=True)
# 1 test ready()
loki_ready = loki_client.ready()
if not loki_ready:
print('Loki is not ready.')
exit(1)
# 2 test query_range_with_context()
query = r'{host="ubuntu"}|~"error"'
result = loki_client.query_range_with_context(query=query, context_before=5, context_after=3)
if result[0]:
print(result)
# 3 test post()
label_dic = {'host': 'windows', 'env': 'test'}
logs_lst = ['This is line 1', 'This is line 2', 'This is line 3', 'This is line 4']
result = loki_client.post(label_dic, logs_lst)
if not result[0]:
print(result[1])
# 4 test labels()
result = loki_client.labels()
print(result)
# 5 test query_range()
query = r'{host="ubuntu"}|~"error"'
result = loki_client.query_range(query, direction=SUPPORTED_DIRECTION[1], limit=10)
print(result)
if result[0]:
print(result[1]['status'])
print(result[1]['data']['resultType'])
# 6 test query()
result = loki_client.query(query, direction=SUPPORTED_DIRECTION[1], limit=10)
print(result)
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
loki-client-0.0.2.tar.gz
(2.3 kB
view details)
Built Distribution
File details
Details for the file loki-client-0.0.2.tar.gz
.
File metadata
- Download URL: loki-client-0.0.2.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.64.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6178e74ad7b874994c813210511f8d4dec92068d1cbe8176c78a2f92d648d298 |
|
MD5 | 8cfe5d092e9042fe6b522a750ea5cc90 |
|
BLAKE2b-256 | 4bd66a797f1fa8145f077234f6ea5053f69795200bfee2d5b42875f620c3da54 |
File details
Details for the file loki_client-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: loki_client-0.0.2-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.64.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bba04d4dd9049f49759185d1ef5e43355d1e084021ff6f018b36f7be184d947d |
|
MD5 | 7799d990123f15c566850249257043b4 |
|
BLAKE2b-256 | 2802805ca5a3ef9d40169630488b94dbe4627aada4ec374fd887e68ab69b106c |