Metadata-Version: 2.1
Name: longleding-operation-log-service-sdk
Version: 0.3.0
Summary: Longleding Operation Log Service SDK
Home-page: https://git.emhub.top/em/operation-log-service
Author: Shi Ran
Author-email: ran.shi@longleding.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Logging
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: attrs
Requires-Dist: grpcio
Requires-Dist: marshmallow

Longleding Operation Log Service SDK

# Supported Python Versions

Python >= 3.6

# Installation

longleding-operation-log-service-sdk is available for Linux, macOS, and Windows.

```shell script
$ pip install longleding-operation-log-service-sdk
```

# Basic Usage

```python
# -*- coding: utf-8 -*-
from datetime import datetime
import operation_log_service

log_service_endpoint = "localhost:80"
source_name = "demo"

operation_log_service.init_service(endpoint=log_service_endpoint, src=source_name)


def put_log():
    log = {
        "time": datetime.now(),
        "topic": "tpc",
        "tags": {"tg1": "v1", "tg2": "v2"},
        "content": "say something."
    }
    operation_log_service.log(**log)


def get_logs():
    end_time = datetime.now()
    start_time = datetime.strptime(("%d-%02d-%02d 00:00:00" % (end_time.year, end_time.month, end_time.day)), "%Y-%m-%d %H:%M:%S")
    request = {
        "start_time": start_time,
        "end_time": end_time,
        "offset": 0,
        "limit": 0,
        "reverse": False,
        "topic_in": ["tpc", "other"],
        "source_in": ["demo", "other"],
        "tag_contains": {
            "tg1": ["v1", "v8"],
            "tg2": [],
        },
    }
    print("request: " + str(request))
    print("\n================================\n")
    resp = operation_log_service.get_operation_logs(**request)
    print(resp.total)
    for v in resp.logs:
        print(v)


if __name__ == '__main__':
    put_log()
    get_logs()

```


