Skip to main content

List of metrics to use with exporters

Project description

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:

from statsmetrics import couchbase as couchbasemetrics
metrics = couchbasemetrics.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 json
from statsmetrics import couchbase as couchbasemetrics
metrics = couchbasemetrics.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.1.tar.gz (5.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