-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
5 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
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
33 changes: 33 additions & 0 deletions
33
docs/content/en/integrations/notification_webhooks/_index.md
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,33 @@ | ||
--- | ||
title: "Notification Webhooks" | ||
description: "..." | ||
weight: 7 | ||
chapter: true | ||
--- | ||
|
||
|
||
## Transition graph: | ||
|
||
```mermaid | ||
flowchart TD | ||
START{START} | ||
STATUS_ACTIVE([STATUS_ACTIVE]) | ||
STATUS_INACTIVE_TMP | ||
STATUS_INACTIVE_400 | ||
STATUS_ACTIVE_500([STATUS_ACTIVE_500]) | ||
STATUS_INACTIVE_500 | ||
STATUS_INACTIVE_OTHERS | ||
STATUS_INACTIVE_MANUAL | ||
START --> STATUS_ACTIVE | ||
STATUS_ACTIVE --HTTP 200 or 201 --> STATUS_ACTIVE | ||
STATUS_ACTIVE --HTTP 5xx, 429, timeout or other non-HTTP error<br> within one day from the first error--> STATUS_INACTIVE_TMP | ||
STATUS_INACTIVE_TMP --After 60s--> STATUS_ACTIVE_500 | ||
STATUS_ACTIVE_500 --HTTP 5xx, 429, timeout or other non-HTTP error<br> within one day from the first error-->STATUS_INACTIVE_TMP | ||
STATUS_ACTIVE_500 --HTTP 5xx, 429, timeout or other non-HTTP error<br> within one day from the first error-->STATUS_INACTIVE_500 | ||
STATUS_ACTIVE_500 --After 24h--> STATUS_ACTIVE | ||
STATUS_ACTIVE --Any HTTP 4xx response--> STATUS_INACTIVE_400 | ||
STATUS_ACTIVE --Any other HTTP response--> STATUS_INACTIVE_OTHERS | ||
STATUS_ACTIVE --Manual deactivation by user--> STATUS_INACTIVE_MANUAL | ||
``` |
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