-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove check from list #87
Comments
Doesn't look like it. The status will eventually disappear as more checks are made, but yes having the disruption message present for that time is disconcerting. I wonder if we could add an exemption list to the statuspage's For example (config_template.js): checkup.config = {
"exclude": [
"excluded-site1.com",
"excluded-site2.com",
// ...
],
"timeframe": 1 * time.Day,
// ...
} Exclusion must be by The actual exclusion behaviour could be handled in a few ways: the chart could be removed and the data ignored entirely, or the chart could be rendered but the alerting exempt from the status reporting. What do you think - if a check is "excluded", should the chart be visible (and maybe disabled somehow), or should it be entirely absent? It should be noted that this will not get rid of the actual notification that happens in the |
Another option might be to let the "checkers": [
{
"type": "http",
"endpoint_name": "My site",
"endpoint_url": "https://my-site.com",
"disabled": true // <- new param
}
], This |
Hello,
is there a way to remove a check from the checkup.json list and so removing any eventual service disruption message?
The text was updated successfully, but these errors were encountered: