No project description provided
Project description
python-openobserve
A python connector to submit information to OpenObserve (https://github.com/openobserve/openobserve)
The idea is to have a similar python connector to the "Elasticsearch" package, which allows a 1:1 replacement of the "Elasticsearch" package with the "OpenObserve" package.
OpenObserve is way more lightweight than Elasticsearch, and it is open source, like everything should be.
install
pip install python-openobserve
usage
see example.ipynb for a full example
from python_openobserve.openobserve import OpenObserve
OO = OpenObserve(user = "root@example.com", password = "Complexpass#123")
from datetime import datetime
from random import random
from pprint import pprint
document = {
"@timestamp" : datetime.utcnow(),
"component" : "testagent",
"action" : "buy",
"amount" : random() * 100,
"portfolio" : {
"USD" : random() * 100.0,
"BTC" : 0.1 + random() * 0.1
}
}
pprint(document)
# insert document
OO.index("dd", document)
#search
# example sql parsing helper
sql = 'SELECT * FROM "dd"'
results = OO.search(sql)
print(f"got {len(results)} results")
pprint(results)
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
python_openobserve-0.1.2.tar.gz
(15.0 kB
view details)
Built Distribution
File details
Details for the file python_openobserve-0.1.2.tar.gz
.
File metadata
- Download URL: python_openobserve-0.1.2.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | feb397a13001bb16c3da70f16c5f531ac7a8702f369585ac8ec5c3ca81158daf |
|
MD5 | b66f41c2f906b9989ab542c1c7f4427f |
|
BLAKE2b-256 | 8fbed9c1d84dfd12476350eb210d0ec22fd08a44dcba6600473ac55f7c4dfe75 |
File details
Details for the file python_openobserve-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: python_openobserve-0.1.2-py3-none-any.whl
- Upload date:
- Size: 28.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3310c24674f9919b3a5c443c27884ad65b5ef7793caffa74fbfcc50513da13dd |
|
MD5 | f764b1762117f65f757563277284dcf8 |
|
BLAKE2b-256 | afb9e7af8ce262b82329a5df954e93253401a95676c162773e400bfb251c45fb |