Base10 is a metrics abstractoin layer for linking multiple metrics source and stores. It also simplifies metric creation and proxying.
Project description
Base10 is a metrics abstractoin layer for linking multiple metrics source and stores. It also simplifies metric creation and proxying.
Documentation
Base10’s documentation can be found at https://base10.readthedocs.io
Installing Base10
Base10 can be installed from Pypi using pip:
pip install base10
Example
This shows a simple metric generator that writes a JSON formatted metric, containing a random value, to RabbitMQ.
from random import random
from time import sleep
from base10 import MetricHelper, MetricHandler
from base10.dialects import JSONDialect
from base10.transports import RabbitMQWriter
if __name__ == '__main__':
class MyMetric(MetricHelper):
_name = 'metric'
_fields = [
'value',
]
_metadata = [
'hostname',
]
class JSON(MetricHandler):
_dialect = JSONDialect()
_writer = RabbitMQWriter(
broker='127.0.0.1', exchange='amq.topic', topic='metrics.example')
json = JSON()
while True:
json.write(MyMetric(value=random(), hostname='test'))
sleep(1)
This shows a simple proxy that reads JSON formatted metrics from RabbitMQ and outputs them in InfluxDB format over a UDP socket.
from base10 import MetricHandler
from base10.dialects import JSONDialect, SplunkDialect #InfluxDBDialect
from base10.transports import RabbitMQReader, UDPWriter
if __name__ == '__main__':
class RabbitMQ(MetricHandler):
_dialect = JSONDialect()
_reader = RabbitMQReader(
broker='127.0.0.1', exchange='amq.topic', routing_key='metrics.#')
class InfluxDB(MetricHandler):
_dialect = SplunkDialect() #InfluxDBDialect()
_writer = UDPWriter(host='127.0.0.1', port=10000)
rabbitmq = RabbitMQ()
influxdb = InfluxDB()
for metric in rabbitmq.read():
influxdb.write(metric)
Contributing
To contribute to base10, please make sure that any new features or changes to existing functionality include test coverage.
Pull requests that add or change code without coverage will most likely be rejected.
Additionally, please format your code using yapf with facebook style prior to issuing your pull request.
yapf --style=facebook -i -r base10 setup.py
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 base10-0.6.2.tar.gz
.
File metadata
- Download URL: base10-0.6.2.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a05d03c29885366259eb142e1287bf8012149643bc4afd0237856b45d693d822 |
|
MD5 | 6fd18832de02b8b748f1223c4f005bb3 |
|
BLAKE2b-256 | 118ca97816ff832b7e2967e487f7bf363d606b2a0f9c5262df9b3b5edefb5f9c |
File details
Details for the file base10-0.6.2-py2.py3-none-any.whl
.
File metadata
- Download URL: base10-0.6.2-py2.py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b3590678d332ad080cb8a6e059cb19fa56f264c934a397903e2463761c9891f |
|
MD5 | 9556b5f7b1d4a6a33a167abf7f9e84f4 |
|
BLAKE2b-256 | 3b0c240e46e06d15562c79c8cf52d50d2bd3e47bde31aec3ac500bbc03b4cfc0 |