Skip to main content

AppOptics APM libraries, instrumentation, and web middleware components for WSGI, Django, and Tornado.

Project description

Build Status PyPI - Implementation PyPI - Python Version PyPI

appoptics_apm

The 'appoptics_apm' module provides automatic instrumentation and metrics/tracing SDK hooks for use with AppOptics.

The appoptics_apm module provides middleware and other instrumentation for popular web frameworks such as Django, Tornado, Pyramid, and WSGI, as well as commonly used libraries like SQLAlchemy, httplib, redis, memcached. Read more at our full documentation.

Installing

The Python instrumentation for AppOptics uses a module named appoptics_apm, which is distributed via pypi.

pip install appoptics_apm

Alternately, you can use this repository to build a local copy.

Configuring

See our documentation on configuring the python instrumentation.

Upgrading

To upgrade an existing installation, you simply need to run:

pip install --upgrade appoptics_apm

Running the Tests

Test Suite Organization

The test suite is organized into three main components, which are described in the following sections. All components are configured to run in a docker environment, which is provided under test/docker. All test can be executed locally, and the unit tests are configured to run automatically in Travis.

Unit Tests -- Verifies Python agent functionality

  • These are actually functional tests; naming is for historic reasons.
  • These are tests that exercise the actual c-lib extension.
  • The C-extension is loaded, but certain C-library methods are modified to intercept the events which would otherwise be reported to the production collector
  • All unit tests are configured to run automatically in Travis when a commit is pushed to the Github repo.

When running the unit tests locally, a pre-built agent distribution found under dist will be used. The agent version of the pre-built distribution is determined by the APPOPTICS_APM_VERSION environment variable and the tests will fail if no source distribution or compatible wheel can be found under dist. If the environment variable is unset, the version as specified by the source code currently checked out will be assumed.

Location of test files
  • Python test scripts are located under test/unit
  • Docker configuration and setup scripts are located under test/docker/unit
  • Test logs will be located under test/docker/unit/logs
  • Code coverage report will be located under test/docker/unit/reports

Install Tests -- Verifies correct installation of agent under a variety of operating systems

  • These tests install the Python agent from the source distribution as well as from the Python wheel (if applicable).
  • After successful installation, a minimal startup test will be performed to check that the agent installed from the source/ binary distribution starts up properly and can connect to the collector.
  • On non-compatible operating systems (such as CentOs 6), a check will be performed that the agent goes into no-nop mode.

When running the install tests locally, a pre-built agent distribution found under dist will be used. The agent version of the pre-built distribution is determined by the APPOPTICS_APM_VERSION environment variable and the tests will fail no source distribution or compatible wheel can be found under dist. If the environment variable is unset, the version as specified by the source code currently checked out will be assumed.

Location of test files
  • There are currently no Python test scripts needed for the install tests
  • Docker configuration and setup scripts and test code is located under test/docker/install
  • Test logs will be located under test/docker/install/logs

Manual Tests -- Manual verification of certain behavior

  • These tests are currently not maintained.

Running the tests locally via docker-compose

Prerequisites

  • Install Docker and Docker Compose on your local machine.
  • Build agent distribution under your local dist/ directory using make package.
    • This will create a source distribution (tar.gz archive) as well as Python wheels under the dist/ directory.
    • To speed up the process, you can only build the source distribution with make sdist when you only want to run the unit tests.

Run tests

To run unit tests locally, simply navigate to test/docker/unit. To execute the install tests, you need to navigate to test/docker/install.

In the respective directories you can now execute the following commands:

  • To see the test matrix as defined by the Compose environment:
docker-compose config
  • To run the entire test suite:
docker-compose up -d
  • To run the entire test suite against a specific version of the Python agent:
APPOPTICS_APM_VERSION=1.2.3 docker-compose up -d

Note that the source and binary distribution of the version as specified in APPOPTICS_APM_VERSION must be available under dist/ already, otherwise all tests will fail.

  • Test logs are written to test/docker/unit|install/logs, and each composed service (i.e. test run) will exit 1 if there are test failures, you can check via:
docker-compose ps
  • To tear down the docker-compose environment, run:
docker-compose down --remove-orphans

Code Coverage Report for Unit and Extension Tests

To activate code coverage reports for the unit tests, you can simply set the following environment variable in your shell:

PYTHON_APPOPTICS_CODECOVERAGE=1

This will measure your code coverage with the coverage Python module and create html-reports in the test/docker/unit/reports directory for the unit tests. The reports will be stored under

<project_root>/test/docker/unit/reports/<service>/unit/index.html

and can simply be viewed with your browser.

For example, if the project is checked out under ~/source/python-appoptics:

Run the desired service <service> with temporarily activated coverage measurement:

PYTHON_APPOPTICS_CODECOVERAGE=1 docker-compose up <service> -d

After the tests have been completed, you should find the coverage report for this service under

~/source/python-appoptics/test/docker/unit/reports/<service>

To view e.g. the unit test results, just open

~/source/python-appoptics/test/docker/unit/reports/<service>/unit/index.html

in your browser.

Support

If you find a bug or would like to request an enhancement, feel free to file an issue. For all other support requests, please email support@appoptics.com.

Contributing

You are obviously a person of great sense and intelligence. We happily appreciate all contributions to the appoptics_apm module whether it is documentation, a bug fix, new instrumentation for a library or framework or anything else we haven't thought of.

We welcome you to send us PRs. We also humbly request that any new instrumentation submissions have corresponding tests that accompany them. This way we don't break any of your additions when we (and others) make changes after the fact.

Activating Git hooks

This repo provides a folder hooks, in which all git hook related scripts can be found. Currently, there is only a pre-commit hook which runs Pylint on the changed *.py files.

To set up the pre-commit hook, simply run the install_hook.sh script in this folder. This will install a project-specific virtual Python environment under which the code will be linted. Note that this requires Pyenv and Pyenv-virtualenv to be installed on your system.

Note: Pyenv-virtualenv provides a functionality to automatically detect your project-specific virtual environment (e.g. when changing into the project folder in the terminal). To activate the auto-detection, you only need to make sure that you added pyenv virtualenv-init to your shell (refer to the installation section for pyenv-virtualenv for more details).

Pylint

To make sure that the code conforms the standards defined in the .pylintrc file, the pre-commit hook will not allow you to commit code if Pylint does issue any errors or warnings on the files you changed.

You can change this behaviour by setting certain environment variables when invoking git commit.

Ignore Pylint warning messages

You can commit your code even though Pylint issued warning messages by setting

PYTHON_APPOPTICS_PYLINT_IGNORE_WARNINGS=1

when invoking git commit.

Ignore Pylint error messages

You can commit your code even though Pylint issued error messages by setting

PYTHON_APPOPTICS_PYLINT_IGNORE_ERRORS=1

when invoking git commit. Please use this option with great care as Pylint error messages usually indicate genuine bugs in your code.

Code Formatting with Yapf

For a more consistent formatting of the Python files, this repository comes with the code formatter Yapf pre-installed in the virtual environment. The configurations of Yapf are stored in the .style.yapf file in the root directory of this repository. Please consult the Yapf documentation for more information about the auto-formatter.

Currently, the formatting is not enforced through any commit hooks, but you can invoke Yapf with the provided configuration in your local development environment.

Developer Resources

We have made a large effort to expose as much technical information as possible to assist developers wishing to contribute to the AppOptics module. Below are the three major sources for information and help for developers:

  • The AppOptics Knowledge Base has a large collection of technical articles or, if needed, you can submit a support request directly to the team.

If you have any questions or ideas, don't hesitate to contact us anytime.

To see the code related to the C++ extension, take a look in appoptics_apm/swig.

License

Copyright (c) 2017 SolarWinds, LLC

Released under the Apache License 2.0

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

appoptics_apm-5.0.1.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

File details

Details for the file appoptics_apm-5.0.1.tar.gz.

File metadata

  • Download URL: appoptics_apm-5.0.1.tar.gz
  • Upload date:
  • Size: 5.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for appoptics_apm-5.0.1.tar.gz
Algorithm Hash digest
SHA256 575f5d6b5a51f7c2284c2c08fab215bf9a6e15711e3865843c6b2cecc7622e6b
MD5 e7fc3483a8289d24012b736e6b7a114a
BLAKE2b-256 c9c62bbc02d1dcabedcefb3c3bc51c16536bb42f1d61e5d5851d9dabe98cdf83

See more details on using hashes here.

File details

Details for the file appoptics_apm-5.0.1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: appoptics_apm-5.0.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for appoptics_apm-5.0.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52526591d50e06af2126da23d72ba673fcda26684ad57e35a59ce0b41626129d
MD5 b94909bcb8043c532c32d3e2c609e6bd
BLAKE2b-256 0858afac880e3ff35f0d17977d09e749174557ac5db27d05c3baf59a269896e8

See more details on using hashes here.

File details

Details for the file appoptics_apm-5.0.1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: appoptics_apm-5.0.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for appoptics_apm-5.0.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e204ae898fe21d75f4fd514ddbb6684e72695343ca28f59b4c528b9f6f7b1f4a
MD5 7bf81ef9574e8021dd4601b5502ee889
BLAKE2b-256 f7a43fcd831b7da1d91281fc141bcf5eef826cbad289e4afa20587d8fb34d992

See more details on using hashes here.

File details

Details for the file appoptics_apm-5.0.1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: appoptics_apm-5.0.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for appoptics_apm-5.0.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d0d947fa300d3cedcd766d3ce8652ae301431de92f5fd21b31caddf4d743d84
MD5 29311596a29e640b86644dbb13a6299b
BLAKE2b-256 7c051d3f9cfeea2b4e99fb47e13406678ee3589740642e56c628209e16185c7e

See more details on using hashes here.

File details

Details for the file appoptics_apm-5.0.1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: appoptics_apm-5.0.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for appoptics_apm-5.0.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bda0bfe5255c0d285c4bfef7f2694cf49a3a48f94a4f5870c2aac187596dc8a
MD5 aadc4a72e375751c7ef5899da6eee570
BLAKE2b-256 08fee9cd0c0da4167ccc72739b4c54386e4a0eb4e0cd496732bfe60a0a7298ac

See more details on using hashes here.

File details

Details for the file appoptics_apm-5.0.1-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: appoptics_apm-5.0.1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for appoptics_apm-5.0.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf11768e22cda3bf9c8e3b359536a17562bd395d1aaf5656ea4a3c208ca84c24
MD5 0cc0fc25232b6eafad9e78e659910c0b
BLAKE2b-256 eb221cae142060d73fec15b0b1bf359b68ce959eb16382e5501a0f45bb9e2ec3

See more details on using hashes here.

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