-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(grouping): Add project option to force grouping and persist it (#…
…12432) * feat(grouping): Add project option to force grouping and persit it * feat(grouping): Expose the grouping config forcing through the api * ref: Improved grouping config selectiong * feat(grouping): Add grouping config to the UI (feature flagged) * meta: Bump semaphore to 0.4.20 * ref: Move grouping config freeze into normalize and change apis * ref: Cleaned up config code * ref: Add config ID to the grouping info output * fix(api): Fix bug where parser didn't allow dates ending in `Z`, and didn't correctly report the parse fail to the user (ISSUE-376) Our parser didn't allow for dates with `Z` at the end, so updated the regex to allow. Also fixed a bug where if a date started with a valid date but ended with invalid input then we'd create a search filter from the valid input, then shove the invalid input into `message` rather than raising a parse error. Fixes (ISSUE-376) * Add enhanced privacy to feedback (#12418) * feat(app-platform): Issue Link UI (#12345) This change takes care of dynamically rendering the Link and Create forms for Sentry Apps that support Issue Link components. * add project to payload (#12407) * feat: Added grouping selector on grouping info page * feat: Added tooltip * test: Improve test coverage for grouping * ref: Slightly improved native grouping * ref: More cleanup in new grouping algorithm * ref: rename a misnamed function
- Loading branch information
Showing
33 changed files
with
550 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from __future__ import absolute_import | ||
|
||
from rest_framework.response import Response | ||
|
||
from sentry.api.base import Endpoint | ||
from sentry.api.serializers import serialize | ||
from sentry.grouping.strategies.configurations import CONFIGURATIONS | ||
|
||
|
||
class GroupingConfigsEndpoint(Endpoint): | ||
permission_classes = () | ||
|
||
def get(self, request): | ||
return Response(serialize([ | ||
config().as_dict() for config in sorted(CONFIGURATIONS.values(), | ||
key=lambda x: x.id) | ||
])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.