[easylog](https://github.com/prprprus/easylog) 的 Python 客户端实现
Project description
easylogcli
简介
easylogcli 是 easylog 的 Python 客户端实现,用于向服务端发送日志信息,无第三方依赖。
需要 Python 版本大于等于 3.6
安装
pip install easylogcli
使用例子
from easylogcli.easylog import EasyLog
import time
def test():
# 创建客户端
client = EasyLog(name='log-server', host='127.0.0.1', port=10000, absolute_path='/Users/tiger/develop/tmp/1.txt')
# 发送日志
client.send(message='下载图片成功')
# 模拟持续运行
time.sleep(0.1)
# 关闭客户端
client.close()
if __name__ == '__main__':
test()
输出的日志格式例子:
[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 14:41:54.517499 - (easylog.py:97) - 下载图片成功
[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 14:41:54.517622 - (easylog.py:97) - 下载图片成功
[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 14:41:54.517733 - (easylog.py:97) - 下载图片成功
[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 14:41:54.517814 - (easylog.py:97) - 下载图片成功
[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 14:41:54.520207 - (easylog.py:97) - 下载图片成功
[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 14:41:54.520277 - (easylog.py:97) - 下载图片成功
日志格式解析:[主机名 IP] INFO - 日期时间 - (文件名:行数) - 日志内容
一些细节
客户端和服务端之间自定义了一个简单的消息体。
消息体例子:
absolute_path:/Users/tiger/develop/tmp/1.txt
content:[Tiger-3.local 172.16.4.251] INFO - 2020-03-06 11:38:32.616777 - (easylog.py:97) - 下载图片成功
----------
消息体字段解析:
- absolute_path: 日志保存路径
- content: 日志内容
- ----------: 分隔符
TODO
- CI
- logging 代替 print
- 批量发送
- 发送失败时报警
- 失败重试
- ...
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
easylogcli-1.2.9.tar.gz
(3.6 kB
view details)
Built Distribution
File details
Details for the file easylogcli-1.2.9.tar.gz
.
File metadata
- Download URL: easylogcli-1.2.9.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bcf5e2868aa73d990ae78f2cb3eb85a3a16003e0545294aa042b1e574f729bd |
|
MD5 | d0b99e56490fa2b5a9c6b9af9053ee6a |
|
BLAKE2b-256 | caa681a99d72b0555620584f660bd12eda9ba1d4a0c9c1007f3a4b71d9cde1eb |
Provenance
File details
Details for the file easylogcli-1.2.9-py3-none-any.whl
.
File metadata
- Download URL: easylogcli-1.2.9-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9eb50c1fed67e983c54ef3d843bc6fbd59fd5eb8b2566ce7481e86c4b4b36dc6 |
|
MD5 | a8c96947c852fd5d0e3a655b85b632b3 |
|
BLAKE2b-256 | e0d006c12a87493860f0c4c9aafccf116217023c46fa0b30784032a2a4a88b91 |