Skip to content

Commit

Permalink
feat(feedback): add feedback as new event type (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshFerge authored Oct 25, 2023
1 parent ce0e1ba commit 22183a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions schemas/events.v1.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@
]
},
"EventType": {
"description": "The type of an event.\n\nThe event type determines how Sentry handles the event and has an impact on processing, rate limiting, and quotas. There are three fundamental classes of event types:\n\n- **Error monitoring events** (`default`, `error`): Processed and grouped into unique issues based on their exception stack traces and error messages. - **Security events** (`csp`, `hpkp`, `expectct`, `expectstaple`): Derived from Browser security violation reports and grouped into unique issues based on the endpoint and violation. SDKs do not send such events. - **Transaction events** (`transaction`): Contain operation spans and collected into traces for performance monitoring.",
"description": "The type of an event.\n\nThe event type determines how Sentry handles the event and has an impact on processing, rate limiting, and quotas. There are three fundamental classes of event types:\n\n- **Error monitoring events** (`default`, `error`): Processed and grouped into unique issues based on their exception stack traces and error messages. - **Security events** (`csp`, `hpkp`, `expectct`, `expectstaple`): Derived from Browser security violation reports and grouped into unique issues based on the endpoint and violation. SDKs do not send such events. - **Transaction events** (`transaction`): Contain operation spans and collected into traces for performance monitoring. - **Feedback events** (`feedback`): Contains user feedback messages.",
"type": "string",
"enum": [
"error",
Expand All @@ -1087,7 +1087,8 @@
"expectstaple",
"transaction",
"nel",
"default"
"default",
"feedback"
]
},
"ExceptionChain": {
Expand Down
5 changes: 3 additions & 2 deletions schemas/generic-events.v1.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@
]
},
"EventType": {
"description": "The type of an event.\n\nThe event type determines how Sentry handles the event and has an impact on processing, rate limiting, and quotas. There are three fundamental classes of event types:\n\n- **Error monitoring events** (`default`, `error`): Processed and grouped into unique issues based on their exception stack traces and error messages. - **Security events** (`csp`, `hpkp`, `expectct`, `expectstaple`): Derived from Browser security violation reports and grouped into unique issues based on the endpoint and violation. SDKs do not send such events. - **Transaction events** (`transaction`): Contain operation spans and collected into traces for performance monitoring.",
"description": "The type of an event.\n\nThe event type determines how Sentry handles the event and has an impact on processing, rate limiting, and quotas. There are three fundamental classes of event types:\n\n- **Error monitoring events** (`default`, `error`): Processed and grouped into unique issues based on their exception stack traces and error messages. - **Security events** (`csp`, `hpkp`, `expectct`, `expectstaple`): Derived from Browser security violation reports and grouped into unique issues based on the endpoint and violation. SDKs do not send such events. - **Transaction events** (`transaction`): Contain operation spans and collected into traces for performance monitoring. - **Feedback events** (`feedback`): Contains user feedback messages.",
"type": "string",
"enum": [
"error",
Expand All @@ -830,7 +830,8 @@
"transaction",
"nel",
"default",
"generic"
"generic",
"feedback"
]
},
"ExceptionChain": {
Expand Down

0 comments on commit 22183a9

Please sign in to comment.