Skip to main content

Python Client for Netuitive Cloud.

Project description

Features

  • Create a Netuitive Element with the following data:
    • Element Name

    • Attributes

    • Tags

    • Metric Samples

Usage

  • Setup the Client

    ApiClient = netuitive.Client(api_key='<my_api_key>')

  • Setup the Element

    MyElement = netuitive.Element()

  • Add an Attribute

    MyElement.add_attribute('Language', 'Python')

  • Add a Tag

    MyElement.add_tag(('Production', 'True')

  • Add a Metric Sample

    MyElement.add_sample('cpu.idle', 1432832135, 1, host='my_hostname')

  • Add a Metric Sample with a Sparse Data Strategy

    MyElement.add_sample('app.zero', 1432832135, 1, host='my_hostname', sparseDataStrategy='ReplaceWithZero')

  • Add a Metric Sample with unit type

    MyElement.add_sample('app.requests', 1432832135, 1, host='my_hostname', unit='requests/s')

  • Send the Samples

    ApiClient.post(MyElement)

  • Remove the samples already sent

    MyElement.clear_samples()

Example

import netuitive

ApiClient = netuitive.Client(apikey='aaaa9956110211e594444697f922ec7b')

MyElement = netuitive.Element()

MyElement.add_attribute('Language', 'Python')
MyElement.add_attribute('app_version', '7.0')

MyElement.add_tag(('Production', 'True')
MyElement.add_tag(('app_tier', 'True')

MyElement.add_sample('app.error', 1432832135, 1, host='appserver01')
MyElement.add_sample('app.request', 1432832135, 10, host='appserver01')

ApiClient.post(MyElement)

MyElement.clear_samples()

History

0.0.6 (2015-06-23)

  • Add support for Spare Data Strategy and Unit settings for Metrics

  • Prevent duplicate metrics

  • Documentation improvements

0.0.5 (2015-06-12)

  • Element type is now easier to set

0.0.3 (2015-06-01)

  • Fixes for API URL setting

0.0.2 (2015-05-28)

  • First release on PyPI.

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

netuitive-0.0.6.tar.gz (16.3 kB view hashes)

Uploaded Source

Built Distribution

netuitive-0.0.6-py2.py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 2 Python 3

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