1
2
3
4
5
6
7
8
9
10
11 from zope.interface import Interface
12
14 """
15 Send events to the event system backend.
16 """
17
19 """
20 Send a list of events to the event system backend.
21 """
22
23
25 """
26 Send a single event to the event system backend.
27 """
28
30 """
31 Plugins that are looked up by zeneventd and executed.
32 """
34 """
35 Apply the plugin to an event.
36 """
37
39 """
40 Event plugins applied before transforms.
41 """
42
43 -class IPostEventPlugin(IEventPlugin):
44 """
45 Event plugins applied after transforms and before passing to ZEP.
46 """
47
49 """
50 Plugins used by an IdentifierPipe to do custom event identification
51 """
53 """
54 Update the identifiers in the event based on custom identifier resolution logic.
55 """
56