Metadata-Version: 2.1
Name: pyumetric
Version: 0.0.4
Summary: A Python Package to unify time series data sources and third party monitoring services.
Home-page: https://github.com/silverbackhq/pyumetric
Author: silverback
Author-email: hello@clivern.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pytz

PyuMetric
=========

A Python Package to unify time series data sources and third party monitoring services.

[![Build Status](https://travis-ci.org/silverbackhq/pyumetric.svg?branch=master)](https://travis-ci.org/silverbackhq/pyumetric)
[![PyPI version](https://badge.fury.io/py/pyumetric.svg)](https://badge.fury.io/py/pyumetric)

Installation
------------
To install PyuMetric run this command:
```
pip3 install pyumetric
```

Usage
-----
After installing the library, Read the following usage criteria:

```python
from pyumetric import Datetime_Utils
from pyumetric import NewRelic_Provider


new_relic = NewRelic_Provider("api_key_here")

# Get apps list
new_relic.get_apps()

# Get app info (12345 is the app id)
new_relic.get_app(12345)

# Get all metric list
new_relic.get_metrics(12345)

# Get Metrics list with a filter (Apdex)
new_relic.get_metrics(12345, "Apdex")

# Get Metric Values from 14 days till now
new_relic.get_metric(
    244202213,
    ["WebTransaction"],
    ["average_response_time"],
    Datetime_Utils("UTC", -14).iso(),
    Datetime_Utils("UTC").iso(),
    False
)
```

Misc
====

Changelog
---------
Version 0.0.4:
```
Update Response.
Fix Exceptions.
Fix Text Cases.
```

Version 0.0.3:
```
Add Datetime Util Module.
```

Version 0.0.2:
```
Initial Release.
```

Acknowledgements
----------------

© 2019, Silverback. Released under [MIT License](https://opensource.org/licenses/mit-license.php).

**PyuMetric** is authored and maintained by [@silverbackhq](http://github.com/silverbackhq).


