A highly-scalable, distributed metric data processing framework based on RabbitMQ
Project description
metricq - python libraries
This is a python implementation of the MetricQ protocol. It allows you to write Sources and Sinks to easily send and receive data over the MetricQ infrastructure.
Installation
Install the package from PyPI:
$ pip install metricq
Examples
The examples
directory contains some basic
examples.
To play around with them, check out a copy of this repository and (in your
favourite venv) install their dependencies:
$ pip install -e '.[examples]'
A simple Source is implemented in metricq_source.py
, as is a Sink in metricq_sink.py
.
We will use the former to produce data for a metric called test.py.dummy
, which we
will then receive and print with the latter.
Assuming a MetricQ instance is reachable at localhost
, configure a
client(consult the documentation of your favourite config provider on how
to do that) named source-py-dummy
to produce values with a frequence of
0.5Hz (i.e. every 2 seconds) :
{
"rate": 0.5
}
To start the Source, run:
$ ./examples/metricq_source.py --server 'amqp://localhost/' --token 'source-py-dummy'
This should now send values for the metric test.py.dummy
in 2-second intervals.
To see (in detail) what's going on, add -v DEBUG
to the arguments above.
On the other side, run
$ ./examples/metricq_sink.py --server 'amqp://localhost/' --metrics 'test.py.dummy'
and you should see new values for the metric test.py.dummy
appear ever 2 seconds.
Development setup
Clone the repository, and in a virtual environment run
$ pip install -e '.[dev]'
This will install all tools necessary for testing and linting.
To test code manually, run pytest
.
Format code using black
and isort
, or lint with flake8
.
To make sure a source distribution (sdist
) contains the correct files, run check-manifest
.
Tools are configured in setup.cfg
respectively pyproject.toml
.
To test code in a fresh environment, run the tox
test harness:
$ tox
This runs the same step as our CI does.
If tox
passes locally there's high chances that CI steps will pass too.
We recommend to install our pre-commit hooks:
$ pre-commit install
This way commits that fail tests or do not comply with our code style are rejected right away.
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 Distributions
Built Distribution
File details
Details for the file metricq-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: metricq-2.0.1-py3-none-any.whl
- Upload date:
- Size: 60.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9b23c8b699d4c3994527bcee3eb28a95bc90b3bec854fafc380751811d80f24 |
|
MD5 | ca4ad3574a88def8eac4400569c7d06a |
|
BLAKE2b-256 | 4ee259067d97370f67c1bd8decff34730f59f68499de0826e4dde9a8ceb226b1 |