You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Saves feedback given data in an event format. This function should only be called by the new feedback consumer's ingest strategy, to process feedback envelopes (feedback v2).
18
+
It is currently instrumented as a task in sentry.tasks.store.
18
19
19
20
If the save is successful and the `associated_event_id` field is present, this will
20
-
also save a UserReport in Postgres. This is to ensure the feedback can be queried by
21
-
group_id, which is hard to associate in clickhouse.
21
+
also save a UserReport in Postgres (shim to v1). This is to allow queries by the group_id relation, which we don't have in clickhouse.
# TODO: this logic should be extracted to a shim_to_userreport function which returns a report dict. After that this function can be removed and the store task can directly call feedback ingest functions.
0 commit comments