An open API service indexing awesome lists of open source software.

https://github.com/silverbackhq/pyumetric

🔰 A Python Package to unify time series data sources and third party monitoring services.
https://github.com/silverbackhq/pyumetric

newrelic python python-library silverback silverbackhq statuspage time-series

Last synced: 10 months ago
JSON representation

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

Awesome Lists containing this project

README

          

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)
[![Coverage Status](https://coveralls.io/repos/github/silverbackhq/pyumetric/badge.svg?branch=master)](https://coveralls.io/github/silverbackhq/pyumetric?branch=master)

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).