Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 670 Bytes

File metadata and controls

23 lines (19 loc) · 670 Bytes

Issue Tracker modules

Here is a high level overview of Issue Tracker architecture.

flowchart TB
    blazorLib[Blazor Lib]
    dotnetLib[.NET Lib]
    issueDispatcher[Issue Dispatcher]
    issueProcessor[Issue processor]
    readModule[Read module]
    issueManagementModule[Issue Management Module]
    analytics[Analytics]
    dashboard[Dashboard]
    incommingQueue([Queue])
    issueDatabase[(Issue database)]

    
    blazorLib & dotnetLib --> issueDispatcher --> incommingQueue --> issueProcessor --> issueDatabase
    issueManagementModule <--> issueDatabase --> readModule & analytics
    analytics --> readModule
    readModule --> dashboard
Loading