Skip to main content

Configurable Python library for metrics and events reporting

Project description

https://travis-ci.org/APSL/kaneda.svg?branch=master https://readthedocs.org/projects/kaneda/badge/?version=latest

Kaneda is a Python library that allows to report events and metrics of your applications. It provides a several builtin metrics methods in order to store any amount of data that you want to then analyze it or for performance studies.

Usage

First of all, you need to install Kaneda package:

pip install kaneda

Then you need a backend in order to keep data in a persistent storage. The following example it shows how to send metrics with Elasticsearch as a backend:

from kaneda.backend import ElasticsearchBackend
from kaneda import Metrics

backend = ElasticsearchBackend(index_name='myindex', app_name='myapp', host='localhost',
                               port=9200, user='kaneda', password='kaneda')
metrics = Metrics(backend=backend)
metrics.gauge('answer_of_life', 42)

Features

  • Builtin metrics functions and custom metric reports.

  • Configurable reporting backends classes and asynchronous queue classes.

  • Builtin Elasticsearch, MongoDB, InfluxDB and RethinkDB backends.

  • Builtin Celery, RQ and ZMQ asynchronous queue classes.

  • Django support.

Documentation

Visit the documentation for an in-depth look at Kaneda.

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

kaneda-1.0.tar.gz (14.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page