-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_transactions.py
61 lines (50 loc) · 1.1 KB
/
main_transactions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from library import *
pipeline = Pipeline(name='transactions')
# # in app module:
# def get_killswitch_context(event):
# return {
# "project_id": event['project_id'],
# }
source = KafkaSource(
ctx=ctx,
name='events-source',
topic='ingest-events',
...
)
ks = Killswitch(
ctx=pipeline,
inputs=[source],
name='kill-ingest',
get_context='sentry.ingest.get_killswitch_context',
)
transform1 = EventEnricher(
ctx=pipeline,
inputs=[ks],
rules=[
'sentry.ingest.GetReleaseEnricher',
'sentry.ingest.GetEnvironmentEnricher',
'sentry.ingest.GetUserEnricher',
'sentry.ingest.ExtractTagsEnricher',
'sentry.ingest.GetAnotherReleaseEnricher',
]
)
# BEGIN PERSIST
# stream[T] -> stream[T]
nodestore = WriteNodestore(
name='write-nodestore',
ctx=pipeline,
input=[transform1],
)
# stream[T] -> stream[T]
eventstream = WriteEventstream(
name='write-eventstream',
ctx=pipeline,
input=[nodestore],
)
# END PERSIST
tsdb = WriteTSDB(
inputs=[eventstream],
)
outcomes = WriteOutcomes(
inputs=[eventstream],
)