playing with metrics
Project description
pytheus
playing with metrics
Experimenting with a different way of creating prometheus metrics in python:
- support for default labels value (wip ⚠️)
- partial labels value (built in an incremental way) ✅
- multiple multiprocess support:
- mmap file based (wip ⚠️)
- redis backend ✅
- customizable registry support ✅
- registry prefix support ✅
Install
pip install pytheus
Partial labels support:
from pytheus.metrics import create_counter
# without labels
my_metric = create_counter('metric_name', 'desc')
my_metric.inc() # example for counter
# with labels
my_metric = create_counter('metric_name', 'desc', required_labels=['req1', 'req2'])
my_metric.labels({'req1': '1', 'req2': '2'}).inc() # you can pass all the labels at once
partial_my_metric = my_metric.labels({'req1': '1'}) # a cacheable object with one of the required labels already set
observable_my_metric = partial_my_metric.labels({'req2': '2'}).inc() # finish setting the remaining values before observing
Exposing metrics:
You can use the generate_metrics
function from pytheus.exposition
to generate the metrics and serve them as an endpoint with your favourite web framework.
Alternatively you can use the make_wsgi_app
function that creates a simple wsgi app to serve the metrics.
How to use different backends
Things work out of the box, using the SingleProcessBackend:
from pytheus.metrics import create_counter
counter = create_counter(
name="my_metric",
description="My description",
required_labels=["label_a", "label_b"],
)
print(counter._metric_value_backend.__class__)
# <class 'pytheus.backends.SingleProcessBackend'>
print(counter._metric_value_backend.config)
# {}
You can define environment configuration to have different defaults, using two environment variables:
export PYTHEUS_BACKEND_CLASS="pytheus.backends.MultipleProcessFileBackend"
export PYTHEUS_BACKEND_CONFIG="./config.json"
Now, create the config file, ./config.json
:
{
"pytheus_file_directory": "./"
}
Now we can try the same snippet as above:
from pytheus.metrics import create_counter
counter = create_counter(
name="my_metric",
description="My description",
required_labels=["label_a", "label_b"],
)
print(counter._metric_value_backend.__class__)
# <class 'pytheus.backends.MultipleProcessFileBackend'>
print(counter._metric_value_backend.config)
# {'pytheus_file_directory': "./"}
You can also pass the values directly in Python, which would take precedence over the environment setup we have just described:
from pytheus.metrics import create_counter
from pytheus.backends import MultipleProcessRedisBackend, load_backend
load_backend(
backend_class=MultipleProcessRedisBackend,
backend_config={
"host": "127.0.0.1",
"port": 6379
}
)
# Notice that if you simply call load_backend(), it would reload config from the environment.
# load_backend() is called automatically at package import, that's why we didn't need to call it
# directly in the previous example
counter = create_counter(
name="my_metric",
description="My description",
required_labels=["label_a", "label_b"],
)
print(counter._metric_value_backend.__class__)
# <class 'pytheus.backends.MultipleProcessRedisBackend'>
print(counter._metric_value_backend.config)
# {'host': '127.0.0.1', 'port': 6379}
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
Built Distribution
File details
Details for the file pytheus-0.0.1.tar.gz
.
File metadata
- Download URL: pytheus-0.0.1.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
86b9f35d874e10f9ec36bcb8f1e58232ac0513996558cea9c313aa0058b6653e
|
|
MD5 |
7939c21f29ee5d7f9fd942fcd8e4d90c
|
|
BLAKE2b-256 |
1dcfc004d927394a71319756ecb6285ae0697c185a3009727037c582cca2cff0
|
File details
Details for the file pytheus-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: pytheus-0.0.1-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
03e72a391f335e450d0982213ff81db1ec90220fabb6068d7fffeecb4b4932e7
|
|
MD5 |
01b5837d2342f25be2dcf9a5c759da2a
|
|
BLAKE2b-256 |
c696946ce9e63aa87fe3c9887b9670fac8fd9649e5068b48efdc03b57e6dab64
|