Metadata-Version: 2.0
Name: bernhard-joe
Version: 0.2.5
Summary: Python client for Riemann with some extra fields that joe needs
Home-page: http://github.com/banjiewen/bernhard.git
Author: Benjamin Anderspn
Author-email: b@banjiewen.net
License: ASF2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: Log Analysis
Classifier: Topic :: Utilities
Classifier: Topic :: System :: Networking :: Monitoring
Requires-Dist: protobuf (>=2.4)

#This is a temporary fork of the original Bernhard to support some custom events that are NOT generic. You shouldn't use this fork and should use the original bernahrd version from banjiewen. Hopefully I will introduce generic events handling at some point, and merge back the work into the original repo.

# Bernhard

A simple Python client for [Riemann](http://github.com/aphyr/riemann). Usage:

```python
import bernhard

c = bernhard.Client()
c.send({'host': 'myhost.foobar.com', 'service': 'myservice', 'metric': 12})
q = c.query('true')
```

## Installing

```bash
pip install bernhard
```

You may encounter issues with the `protobuf` dependency; if so, just run `pip
install protobuf` manually, then `pip install bernhard`.



