Skip to main content

call count extension for TimerMiddleware

Project description

To use the callcount script you will need to define your own runnable Python script. In that script will setup your callables.

Command Line Options

tm_callcount includes a default_args that you will need to use for your Python script. You can see the options by running –help.

Creating CountCases

This example assumes you have defined a custom TimerMiddleware for your application and that you have set a stats.sample_rate config value. See: http://pythonhosted.org/TimerMiddleware/quickstart.html

We do our extra setup outside of our count_ methods. This ensures that any setup we do is not included in the counts.

from myapp import db from myapp.tests import TestController

from twm_callcount import (

default_args, CountRunner, CountCase, )

class CountAppURL(CountCase):
def setUp(self):

self.test = TestController() self.create_test_data()

def tearDown(self):

self.test.tearDown()

def create_test_data(self):

db.add_page(‘Test Wiki’, ‘content’) db.add_ticket(‘Test Ticket’, ‘content’)

def count_wiki_page(self):

self.test.app.get(‘wiki’, extra_environ=self.environ)

def count_ticket_page(self):

self.test.app.get(‘ticket’, extra_environ=self.environ)

def main(args):

runner = CountRunner(args) runner([CountAppURL])

if __name__ == ‘__main__’:

main(default_args())

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

tmw-callcount-0.1.3.tar.gz (2.6 kB view hashes)

Uploaded Source

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