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