Advanced search access in onpremise install

Hi! When I try use negative condition - I got You need access to the advanced search feature to use negative search error

How I can use Advanced search in onpremise installation?

1 Like

Hi, can you share your configuration as this should be automatically enabled via feature flags.

If not, we many need to update our default config.

it is feature section from our config for Sentry 10, we have it from previous version with upgrade to 10

SENTRY_FEATURES = {
  "auth:register": True
}
SENTRY_FEATURES["projects:sample-events"] = False
SENTRY_FEATURES.update(
    {
        feature: True
        for feature in (
            "organizations:discover",
            "organizations:events",
            "organizations:global-views",
            "organizations:integrations-issue-basic",
            "organizations:integrations-issue-sync",
            "organizations:invite-members",
            "organizations:new-issue-ui",
            "organizations:repos",
            "organizations:require-2fa",
            "organizations:sentry10",
            "organizations:sso-basic",
            "organizations:sso-rippling",
            "organizations:sso-saml2",
            "organizations:suggested-commits",
            "projects:custom-inbound-filters",
            "projects:data-forwarding",
            "projects:discard-groups",
            "projects:plugins",
            "projects:rate-limits",
            "projects:servicehooks",
        )
    }
)

Ah, looks like we are missing organizations:advanced-search from that list. Submitting a PR.

Thanks! That helped

1 Like