├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yml ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── doc-requirements.txt ├── docs ├── _static │ └── custom.css ├── api.rst ├── changelog.rst ├── conf.py ├── index.rst └── testing.rst ├── pyproject.toml ├── scripts ├── install.ps1 ├── releases │ ├── geventrel.sh │ ├── geventreleases.sh │ └── make-manylinux └── run_with_env.cmd ├── setup.cfg ├── setup.py ├── src └── perfmetrics │ ├── __init__.py │ ├── _metric.pxd │ ├── _util.py │ ├── clientstack.py │ ├── interfaces.py │ ├── metric.py │ ├── pyramid.py │ ├── statsd.py │ ├── testing │ ├── __init__.py │ ├── client.py │ ├── matchers.py │ ├── observation.py │ └── tests │ │ ├── __init__.py │ │ ├── test_client.py │ │ ├── test_matchers.py │ │ └── test_observation.py │ ├── tests │ ├── __init__.py │ ├── bench_metric.py │ ├── benchmarks │ │ └── spraytest.py │ ├── test_clientstack.py │ ├── test_metric.py │ ├── test_perfmetrics.py │ ├── test_pyramid.py │ ├── test_statsd.py │ └── test_wsgi.py │ └── wsgi.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- 1 | .[docs] 2 | -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/scripts/install.ps1 -------------------------------------------------------------------------------- /scripts/releases/geventrel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/scripts/releases/geventrel.sh -------------------------------------------------------------------------------- /scripts/releases/geventreleases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/scripts/releases/geventreleases.sh -------------------------------------------------------------------------------- /scripts/releases/make-manylinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/scripts/releases/make-manylinux -------------------------------------------------------------------------------- /scripts/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/scripts/run_with_env.cmd -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/setup.py -------------------------------------------------------------------------------- /src/perfmetrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/__init__.py -------------------------------------------------------------------------------- /src/perfmetrics/_metric.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/_metric.pxd -------------------------------------------------------------------------------- /src/perfmetrics/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/_util.py -------------------------------------------------------------------------------- /src/perfmetrics/clientstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/clientstack.py -------------------------------------------------------------------------------- /src/perfmetrics/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/interfaces.py -------------------------------------------------------------------------------- /src/perfmetrics/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/metric.py -------------------------------------------------------------------------------- /src/perfmetrics/pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/pyramid.py -------------------------------------------------------------------------------- /src/perfmetrics/statsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/statsd.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/__init__.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/client.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/matchers.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/observation.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/tests/__init__.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/tests/test_client.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/tests/test_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/tests/test_matchers.py -------------------------------------------------------------------------------- /src/perfmetrics/testing/tests/test_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/testing/tests/test_observation.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/__init__.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/bench_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/bench_metric.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/benchmarks/spraytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/benchmarks/spraytest.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/test_clientstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/test_clientstack.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/test_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/test_metric.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/test_perfmetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/test_perfmetrics.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/test_pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/test_pyramid.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/test_statsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/test_statsd.py -------------------------------------------------------------------------------- /src/perfmetrics/tests/test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/tests/test_wsgi.py -------------------------------------------------------------------------------- /src/perfmetrics/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/src/perfmetrics/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/perfmetrics/HEAD/tox.ini --------------------------------------------------------------------------------