def setUp(self):
        super(TornadoMeasuresTestCase, self).setUp()

        response = MagicMock()
        response.code = 201
        response.error = None

        class MyHTTPClient(AsyncHTTPClient):

            def fetch_impl(self, request, callback):
                callback(response)

        setup_measures(
            client='my-test-app',
            address=('localhost', 123),
            dimensions={'tsuru-appname': 'My-App'},
            client_class=MyHTTPClient,
        )

        self.response = response
        self.client = AsyncHTTPClient()
예제 #2
0
from tornado.ioloop import IOLoop
from tornado import gen
from tornado_measures import setup_measures
from tornado.httpclient import AsyncHTTPClient

setup_measures(
    client='MyApplicationName',
    address=('host', 1984),  # logstash host and port
    # optional: if you want to use pycurl instead default tornado client
    client_class = 'tornado.curl_httpclient.CurlAsyncHTTPClient'
)
# don't use AsyncHTTPClient.configure anymore
http_client = AsyncHTTPClient()


@gen.coroutine
def blah():
    response = yield http_client.fetch(
        "http://globo.com/", raise_error=True)

blah()
IOLoop.current().start()