Skip to content

Commit 0b11564

Browse files
authored
feat: enable user feedback feature (#3193)
* feat: enable user feedback feature
1 parent cd7c460 commit 0b11564

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

docker-compose.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,11 @@ services:
426426
command: run consumer ingest-monitors --consumer-group ingest-monitors
427427
profiles:
428428
- feature-complete
429+
ingest-feedback-events:
430+
<<: *sentry_defaults
431+
command: run consumer ingest-feedback-events --consumer-group ingest-feedback
432+
profiles:
433+
- feature-complete
429434
monitors-clock-tick:
430435
<<: *sentry_defaults
431436
command: run consumer monitors-clock-tick --consumer-group monitors-clock-tick

sentry/sentry.conf.example.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ def get_internal_network():
293293
"projects:rate-limits",
294294
"projects:servicehooks",
295295
)
296+
# Starfish related flags
296297
+ (
297298
"organizations:deprecate-fid-from-performance-score",
298299
"organizations:indexed-spans-extraction",
@@ -311,10 +312,23 @@ def get_internal_network():
311312
"organizations:starfish-mobile-appstart",
312313
"projects:span-metrics-extraction",
313314
"projects:span-metrics-extraction-addons",
314-
) # starfish related flags
315+
)
316+
# User Feedback related flags
317+
+ (
318+
"organizations:user-feedback-ingest",
319+
"organizations:user-feedback-replay-clip",
320+
"organizations:user-feedback-ui",
321+
"organizations:feedback-visible",
322+
"organizations:feedback-ingest",
323+
"organizations:feedback-post-process-group",
324+
)
315325
}
316326
)
317327

328+
# Temporary flag to mark User Feedback to be produced to the dedicated feedback topic by relay.
329+
# This will be removed at a later time after it's considered stable and fully rolled out.
330+
SENTRY_OPTIONS["feedback.ingest-topic.rollout-rate"] = 1.0
331+
318332
#######################
319333
# MaxMind Integration #
320334
#######################

0 commit comments

Comments
 (0)