Skip to content

Commit 0452cb7

Browse files
ryan953andrewshie-sentry
authored andcommitted
feat(devservices): Add --mode=replay to devservices to bring up replay related ingest (#98951)
We've got a new mode `devservices up --mode replay` which pulls up replay specific ingest, as well as errors and transactions (which can both be viewed within replay). This also adds the new ingest command to the existing `--mode ingest-all` and `--mode full` configs. It's not added to `--mode ingest` which is more for common ingest stuff, not extras like replay.
1 parent c1efc2e commit 0452cb7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

devservices/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ x-sentry-service-config:
116116
description: Kafka consumer for processing issue occurrences
117117
ingest-feedback-events:
118118
description: Kafka consumer for processing user feedback events
119+
ingest-replay-recordings:
120+
description: Kafka consumer for processing ingested replay recordings
119121
# Monitor-related services
120122
monitors-clock-tick:
121123
description: Kafka consumer for monitor clock ticks
@@ -217,6 +219,17 @@ x-sentry-service-config:
217219
post-process-forwarder-errors,
218220
post-process-forwarder-transactions,
219221
]
222+
replay:
223+
[
224+
postgres,
225+
snuba,
226+
relay,
227+
spotlight,
228+
ingest-replay-recordings,
229+
ingest-events,
230+
ingest-transactions,
231+
worker,
232+
]
220233
ingest:
221234
[
222235
snuba,
@@ -244,6 +257,7 @@ x-sentry-service-config:
244257
ingest-occurrences,
245258
ingest-profiles,
246259
ingest-transactions,
260+
ingest-replay-recordings,
247261
monitors-clock-tasks,
248262
monitors-clock-tick,
249263
monitors-incident-occurrences,
@@ -271,6 +285,7 @@ x-sentry-service-config:
271285
ingest-transactions,
272286
ingest-monitors,
273287
ingest-feedback-events,
288+
ingest-replay-recordings,
274289
monitors-clock-tick,
275290
monitors-clock-tasks,
276291
monitors-incident-occurrences,
@@ -336,6 +351,8 @@ x-programs:
336351
command: sentry run consumer post-process-forwarder-issue-platform --consumer-group=sentry-consumer --auto-offset-reset=latest --no-strict-offset-reset
337352
ingest-feedback-events:
338353
command: sentry run consumer ingest-feedback-events --consumer-group=sentry-consumer --auto-offset-reset=latest --no-strict-offset-reset
354+
ingest-replay-recordings:
355+
command: sentry run consumer ingest-replay-recordings --consumer-group=sentry-consumer --auto-offset-reset=latest --no-strict-offset-reset
339356
subscription-results-eap-items:
340357
command: sentry run consumer subscription-results-eap-items --consumer-group=sentry-consumer --auto-offset-reset=latest --no-strict-offset-reset
341358
metrics-subscription-results:

0 commit comments

Comments
 (0)