Skip to content

Commit

Permalink
Docs: add Transition graph
Browse files Browse the repository at this point in the history
  • Loading branch information
kiblik committed Jul 5, 2024
1 parent 9ff6bf5 commit 6eb12fa
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/content/en/integrations/burp-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Defect Dojo Burp plugin"
description: "Export findings directly from Burp to DefectDojo."
draft: false
weight: 8
weight: 9
---

**Please note: The DefectDojo Burp Plugin has been sunset and is no longer a supported feature.**
Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/integrations/exporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Exporting"
description: "DefectDojo has the ability to export findings."
draft: false
weight: 11
weight: 12
---


Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/integrations/google-sheets-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Google Sheets synchronisation"
description: "Export finding details to Google Sheets and upload changes from Google Sheets."
draft: false
weight: 7
weight: 8
---

**Please note - the Google Sheets feature has been deprecated as of DefectDojo version 2.21.0 - these documents are for reference only.**
Expand Down
2 changes: 1 addition & 1 deletion docs/content/en/integrations/languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Languages and lines of code"
description: "You can import an analysis of languages used in a project, including lines of code."
draft: false
weight: 9
weight: 10
---

## Import of languages for a project
Expand Down
33 changes: 33 additions & 0 deletions docs/content/en/integrations/notification_webhooks/_index.md
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
```
2 changes: 1 addition & 1 deletion docs/content/en/integrations/rate_limiting.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Rate Limiting"
description: "Configurable rate limiting on the login page to mitigate brute force attacks"
draft: false
weight: 9
weight: 11
---


Expand Down

0 comments on commit 6eb12fa

Please sign in to comment.