Skip to main content

Nameko dependency provider that dispatches log data using Events (Pub-Sub).

Project description

Nameko dependency provider that dispatches log data using Events (Pub-Sub).

https://travis-ci.org/sohonetlabs/nameko-eventlog-dispatcher.png?branch=master

Usage

Dispatching event log data

Include the EventLogDispatcher dependency in your service class:

from nameko.rpc import rpc
from nameko_eventlog_dispatcher import EventLogDispatcher


class FooService:

    name = 'foo'

    eventlog_dispatcher = EventLogDispatcher()

    @rpc
    def foo_method(self):
        self.eventlog_dispatcher(
          'foo_event_type', {'value': 1}, metadata={'meta': 2}
        )

event_type, event_data (optional) and metadata (optional) can be provided as arguments. Both event_data and metadata must be dictionaries and contain JSON serializable data.

Calling foo_method will dispatch an event from the foo service with log_event as the event type. However foo_event_type will be the event type stored as part of the event metadata.

Then, any nameko service will be able to handle this event.

from nameko.events import event_handler


class BarService:

    name = 'bar'

    @event_handler('foo', 'log_event')
    def foo_log_event_handler(self, body):
        """`body` will contain the event log data."""

Capturing log data when entrypoints are fired

Enable auto capture event logs in your nameko configuration file:

# config.yaml

EVENTLOG_DISPATCHER:
  auto_capture: true
  entrypoints_to_exclude: []
  event_type: log_event

All the attributes above are optional and only used to override their default values.

With auto_capture set to true, a nameko event will be dispatched every time an entrypoint is fired:

  • They can also be handled by listening log_event events from the service dispatching them.

  • entrypoint_fired will be the event type stored as part of the event metadata.

  • Only entrypoints listed in the ENTRYPOINT_TYPES_TO_LOG class attribute will be logged.

  • entrypoints_to_exclude can be used to provide a list of entrypoint method names to exclude when firing events automatically.

event_type can be added to the config to override the default nameko event type used to dispatch this kind of events.

Format of the event log data

This is the format of the event log data:

{
  "entrypoint_name": "foo_method",
  "service_name": "foo",
  "timestamp": "2017-06-12T13:48:16+00:00",
  "event_type": "foo_event_type",  # "entrypoint_fired", ...
  "data": {},
  "call_stack": [
    "standalone_rpc_proxy.call.3f349ea4-ed3e-4a3b-93d0-a36fbf928ecb",
    "bla.bla_method.21d623b4-edc4-4232-9957-4fad72533b75",
    "foo.foo_method.d7e907ee-9425-48a6-84e6-89db19e3ce50"
  ],
  "entrypoint_protocol": "Rpc",
  "call_id": "foo.foo_method.d7e907ee-9425-48a6-84e6-89db19e3ce50"
}

The data attribute will contain the event data that was provided as an argument for the event_data parameter when dispatching the event.

Tests

It is assumed that RabbitMQ is up and running on the default URL guest:guest@localhost and uses the default ports.

$ make test
$ make coverage

A different RabbitMQ URI can be provided overriding the following environment variables: RABBIT_CTL_URI and AMQP_URI.

Additional pytest parameters can be also provided using the ARGS variable.

$ make test RABBIT_CTL_URI=http://guest:guest@dockermachine:15673 AMQP_URI=amqp://guest:guest@dockermachine:5673 ARGS='-x -vv --disable-pytest-warnings'
$ make coverage RABBIT_CTL_URI=http://guest:guest@dockermachine:15673 AMQP_URI=amqp://guest:guest@dockermachine:5673 ARGS='-x -vv --disable-pytest-warnings'

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

nameko-eventlog-dispatcher-0.2.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file nameko-eventlog-dispatcher-0.2.0.tar.gz.

File metadata

File hashes

Hashes for nameko-eventlog-dispatcher-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c744b2f4fc362850131ecf101e0ac48bff4381e98981e3bf565f0cf4e03d2703
MD5 4dc29a5081f65dfae38a5c3afd3c43d5
BLAKE2b-256 bff4cc7cb942c3aa7fd0c299263778c9d158f18f5798326fb7d734bc542f7f19

See more details on using hashes here.

File details

Details for the file nameko_eventlog_dispatcher-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nameko_eventlog_dispatcher-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3efc3ba8ad92904fc6ed0d1ed0c91bc8a46a11dce8cc6af0945b43e74a11665e
MD5 42b8cc6ec6405f950d9961266b5120f3
BLAKE2b-256 d8b8493cc0684b60f467418929865413885995f6839a2a16504251669baecdb7

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