Jump to content

We have a alert subscription that is running. We can not view or delete the subscription. Is there a place where an admin can disable the alert subscription? Thanks


Chris Houmard

Recommended Posts

Hi Chris

If there is a problem showing the alert in the subscription panel, your best option would be to update the database table that controls the subscriptions and set the enabled flag to false or 0.

The table within the alerting database is called "SUBSCRIPTIONS". You can locate the subscription by searching on the various columns in the database including "ANALYSISPATH" and "FROMNAME".

select subscription_id from subscriptions where analysispath contains '%mydxp%'

Once you have the single subscription_id you can disable the subscription as follows:

update subscriptions set enabled = 0 where subscription_id = 'xxx'

We are working on a Community version of the Alerting Framework which will contain better visibility and operational management for admins to perform these kind of tasks.

If you have any trouble getting the alert disabled, please feel free to reach out to my directly.

Cheers

Dave

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...