cowbird.database.stores

Stores to read/write data to from/to MongoDB using pymongo.

Module Contents

Classes

StoreInterface

Check that the store implementation defines its type and index_fields.

MongodbStore

Base class extended by all concrete store implementations.

MonitoringStore

Registry for monitoring instances.

Attributes

LOGGER

cowbird.database.stores.LOGGER[source]
class cowbird.database.stores.StoreInterface[source]

Bases: object

Check that the store implementation defines its type and index_fields.

type[source]
index_fields = [][source]
class cowbird.database.stores.MongodbStore(collection: Optional[Dict[str, Any]])[source]

Base class extended by all concrete store implementations.

Validate and hold the collection for all the implementation.

classmethod get_args_kwargs(cls: Any, *args: Any, **kwargs)Tuple[Tuple, Dict][source]

Filters MongodbStore-specific arguments to safely pass them down its __init__.

class cowbird.database.stores.MonitoringStore(*args, **kwargs)[source]

Bases: StoreInterface, MongodbStore

Registry for monitoring instances.

Uses MongoDB to store what is monitored and by whom.

Init the store used to save monitors.

type = monitors[source]
index_fields = ['callback', 'path'][source]
save_monitor(self: cowbird.monitoring.monitor.Monitor, monitor)None[source]

Stores Monitor in MongoDB storage.

delete_monitor(self: cowbird.monitoring.monitor.Monitor, monitor)None[source]

Removes Monitor from MongoDB storage.

list_monitors(self)List[cowbird.monitoring.monitor.Monitor][source]

Lists all Monitor in MongoDB storage.

clear_services(self)None[source]

Removes all Monitor from MongoDB storage.