Skip to main content

List of metrics to use with exporters

Project description

StatsMetrics
=============

This module contains metrics which you can use to export to analytics apps.

----------

#### Installation instructions:
Install via ``pip``:

$ pip install statsmetrics

*See ``pip`` installation instructions at http://www.pip-installer.org/en/latest/installing.html*

#### Available metrics:
- Couchbase

#### Usage example:

import metrics.couchbase as couchbase_metrics
metrics = couchbase_metrics.get_metrics()

#### Response format:

'cluster': {
'url': '/pools/default/',
'metrics': [
{'name':'storageTotals.ram.total','id':'storageTotals.ram.total','suffix':'bytes','labels':['name']},
(... other cluster metrics)
]
},
'nodes': {
'url': '/pools/nodes/',
'metrics': [
{'name':'systemStats.cpu_utilization_rate','id':'systemStats.cpu_utilization_rate','suffix':'count','labels':['name','hostname']},
(... other nodes metrics)
]
},
'buckets': {
'url': '/pools/default/buckets/',
'metrics': [
{'name':'basicStats.quotaPercentUsed','id':'basicStats.quotaPercentUsed','suffix':'percent','labels':['name','bucket']},
(... other buckets metrics),
],
'bucket_stats': [
{'name':'avg_bg_wait_time','id':'avg_bg_wait_time','suffix':'seconds','labels':['name','bucket']},
(... other bucket_stats metrics),
]
}
}


#### Testing the package:

$ python test.py


#### Tips:
Convert returned data to JSON format

import metrics.couchbase as couchbase_metrics
metrics = couchbase_metrics.get_metrics()
print json.dumps(metrics, ensure_ascii=False)

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

statsmetrics-1.0.0.tar.gz (5.0 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