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 without the C-extension

  • These are actually functional tests; naming is for historic reasons.
  • The C-extension is not loaded in any of the tests.
  • 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

Extension Tests -- Verifies Python agent with the C-extension

  • These are tests that exercise the actual c-lib extension.
  • Tests in this directory are not exhaustive, thorough testing of the agent with the C-lib is performed in the integration test suite which is located in a separate repository.
  • All extension tests are configured to run automatically in Travis when a commit is pushed to the Github repo.

When running the extension 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/extension
  • 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 and extension tests.

Run tests

To run unit and extension 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 and extension 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 as well as the extension tests. The reports will be stored under

<project_root>/test/docker/unit/reports/<service>/<unit|extension>/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 Librato Open License

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-4.4.0.tar.gz (5.1 MB view details)

Uploaded Source

Built Distributions

File details

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

File metadata

  • Download URL: appoptics_apm-4.4.0.tar.gz
  • Upload date:
  • Size: 5.1 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-4.4.0.tar.gz
Algorithm Hash digest
SHA256 d54c0e66d341789885ca797cd9c665ca0189a2ac0e8bc884197da067167bebb0
MD5 22f2133a3868d1453b89fd569a375847
BLAKE2b-256 09af5ee5dcb3ca085fb1294b64dd75e5f396871d75e78240505cfb30b5abcb99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: appoptics_apm-4.4.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 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-4.4.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b553e484aeef1cdf698f0445c1ab0d773b8f21c3fd69fc9150a610390a75321
MD5 64734fa8e933738e020846db58137126
BLAKE2b-256 3eb398352d77903e1ce21176366ebf56f1dcac8f30fdeaa90954473bbae97ff0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: appoptics_apm-4.4.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 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-4.4.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a42df71329d2325f67e25f268f79b189150441c8e3fb2823fe2fef1e0891b57c
MD5 d49ded8954c56c28f378265031c3b776
BLAKE2b-256 c65c301967389440a5c1c3f685ca0634d67c023eccceb5a41612bc14d2794e66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: appoptics_apm-4.4.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 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-4.4.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3345a563a7d7378658eacf31b6929d542776604b57f16fbd11ab119b497b89ff
MD5 a4db8a6b8367c993d9b73597936a5ee6
BLAKE2b-256 d3e9288d5e5eb8b3c8c665cb375c39f98fff96a6ddb178be3951884d62712a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: appoptics_apm-4.4.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 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-4.4.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37c2d8eee40557f27a147a2687ec1d03948bf185fdbc94f0f0f66c19286b6803
MD5 3c6d08fa0220666897abfe259bfc7dcc
BLAKE2b-256 29e6576de6a29348ba74335522aaf26abc4eacdc7c6985f79290a203a5d1c05e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: appoptics_apm-4.4.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 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-4.4.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba5e10e440daf8712f815c2b9e4e3141fc1b820564a1c0b2a5d60e6394099811
MD5 ae7a6666c6126f5f714f7fb395791614
BLAKE2b-256 e24fbb570549c60ce09e24d25f2802650b51db9689cade54290d6c1859183cc9

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