AppDynamics REST API Library
Project description
Current version: 0.4.22
Introduction
AppDynamicsRESTx is a library that provides a clean Python interface to the REST API of an AppDynamics controller.
AppDynamicsRESTx is developed using Python 2.7.6 on Mac OSX. It is known to work on most Linux distributions and on Windows, with your choice of Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, or 3.8.
Installation
Install via pip:
$ pip install AppDynamicsRESTx
Install from source:
$ git clone https://github.com/homedepot/AppDynamicsRESTx.git $ cd AppDynamicsRESTx $ python setup.py install
Prerequisites
Documentation
The documentation is hosted online at readthedocs.org.
A Quick Example
Here’s a simple example that retrieves a list of business applications from a controller on localhost, and prints them out:
from appd.request import AppDynamicsClient
c = AppDynamicsClient('http://localhost:8090', 'user1', 'password', 'customer1', verbose=True)
for app in c.get_applications():
print app.name, app.id
Testing
If you have cloned the repo, you can run the unit tests from setup.py:
python setup.py test
Or, if you have nose installed, you can use that:
nosetests
For More Information
The main source repo is on Github.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.