gitextract_sz7kn825/ ├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── custom-backends/ │ ├── README.md │ ├── mssql/ │ │ ├── .gitignore │ │ ├── Dfm.MsSql.csproj │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── arm-template.json │ │ └── host.json │ ├── netcore21/ │ │ ├── .gitignore │ │ ├── Dfm.NetCore21.csproj │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── arm-template.json │ │ └── host.json │ └── netcore31/ │ ├── .gitignore │ ├── Dfm.NetCore31.csproj │ ├── README.md │ ├── Startup.cs │ ├── arm-template.json │ └── host.json ├── durablefunctionsmonitor-vscodeext/ │ ├── .gitignore │ ├── .vscode/ │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── BackendProcess.ts │ │ ├── ConnStringUtils.ts │ │ ├── FunctionGraphList.ts │ │ ├── FunctionGraphView.ts │ │ ├── MonitorTreeDataProvider.ts │ │ ├── MonitorView.ts │ │ ├── MonitorViewList.ts │ │ ├── Settings.ts │ │ ├── SharedConstants.ts │ │ ├── StorageAccountTreeItem.ts │ │ ├── StorageAccountTreeItems.ts │ │ ├── SubscriptionTreeItem.ts │ │ ├── SubscriptionTreeItems.ts │ │ ├── TaskHubTreeItem.ts │ │ ├── az-func-as-a-graph/ │ │ │ ├── FunctionsMap.d.ts │ │ │ ├── traverseFunctionProject.ts │ │ │ └── traverseFunctionProjectUtils.ts │ │ ├── extension.ts │ │ └── test/ │ │ ├── runTest.ts │ │ └── suite/ │ │ ├── extension.test.ts │ │ └── index.ts │ ├── tsconfig.json │ └── tslint.json ├── durablefunctionsmonitor.dotnetbackend/ │ ├── .gitignore │ ├── .vscode/ │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── Common/ │ │ ├── Auth.cs │ │ ├── CustomTemplates.cs │ │ ├── DetailedOrchestrationStatus.cs │ │ ├── ExpandedOrchestrationStatus.cs │ │ ├── FilterClause.cs │ │ ├── Globals.cs │ │ ├── HttpHandlerBase.cs │ │ ├── OrchestrationHistory.cs │ │ ├── Setup.cs │ │ └── TableClient.cs │ ├── DfmStatics/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── static/ │ │ ├── css/ │ │ │ ├── 2.62e7949a.chunk.css │ │ │ └── main.12374d2f.chunk.css │ │ └── js/ │ │ ├── 2.7e622828.chunk.js │ │ ├── 2.7e622828.chunk.js.LICENSE.txt │ │ ├── main.7371b08e.chunk.js │ │ └── runtime-main.edc3f937.js │ ├── Dockerfile │ ├── Functions/ │ │ ├── About.cs │ │ ├── CleanEntityStorage.cs │ │ ├── DeleteTaskHub.cs │ │ ├── EasyAuthConfig.cs │ │ ├── FunctionMap.cs │ │ ├── IdSuggestions.cs │ │ ├── ManageConnection.cs │ │ ├── Orchestration.cs │ │ ├── Orchestrations.cs │ │ ├── PurgeHistory.cs │ │ ├── ServeStatics.cs │ │ └── TaskHubNames.cs │ ├── LICENSE │ ├── NUGET_README.md │ ├── README.md │ ├── arm-template.json │ ├── dfm-aks-deployment.yaml │ ├── durablefunctionsmonitor.dotnetbackend.csproj │ ├── durablefunctionsmonitor.dotnetbackend.targets │ ├── host.json │ ├── nuspec.nuspec │ ├── proxies.json │ └── setup-and-run.js ├── durablefunctionsmonitor.functions/ │ └── README.md ├── durablefunctionsmonitor.react/ │ ├── .gitignore │ ├── README.md │ ├── copy-build-artifacts.js │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── manifest.json │ ├── src/ │ │ ├── CancelToken.ts │ │ ├── DateTimeHelpers.ts │ │ ├── DfmContext.ts │ │ ├── components/ │ │ │ ├── ErrorMessage.css │ │ │ ├── ErrorMessage.tsx │ │ │ ├── FunctionGraph.css │ │ │ ├── FunctionGraph.tsx │ │ │ ├── FunctionGraphBase.tsx │ │ │ ├── FunctionGraphTabBase.tsx │ │ │ ├── LoginIcon.css │ │ │ ├── LoginIcon.tsx │ │ │ ├── Main.css │ │ │ ├── Main.tsx │ │ │ ├── MainMenu.css │ │ │ ├── MainMenu.tsx │ │ │ ├── OrchestrationLink.tsx │ │ │ ├── SaveAsSvgButton.tsx │ │ │ ├── details-view/ │ │ │ │ ├── DurableEntityButtons.tsx │ │ │ │ ├── DurableEntityFields.tsx │ │ │ │ ├── OrchestrationButtons.tsx │ │ │ │ ├── OrchestrationDetails.css │ │ │ │ ├── OrchestrationDetails.tsx │ │ │ │ ├── OrchestrationDetailsFunctionGraph.tsx │ │ │ │ └── OrchestrationFields.tsx │ │ │ ├── dialogs/ │ │ │ │ ├── CleanEntityStorageDialog.css │ │ │ │ ├── CleanEntityStorageDialog.tsx │ │ │ │ ├── ConnectionParamsDialog.tsx │ │ │ │ ├── LongJsonDialog.tsx │ │ │ │ ├── PurgeHistoryDialog.css │ │ │ │ ├── PurgeHistoryDialog.tsx │ │ │ │ ├── StartNewInstanceDialog.css │ │ │ │ └── StartNewInstanceDialog.tsx │ │ │ └── results-view/ │ │ │ ├── Orchestrations.css │ │ │ ├── Orchestrations.tsx │ │ │ ├── OrchestrationsFunctionGraph.css │ │ │ ├── OrchestrationsFunctionGraph.tsx │ │ │ ├── OrchestrationsGanttChart.tsx │ │ │ ├── OrchestrationsHistogram.tsx │ │ │ └── OrchestrationsList.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── services/ │ │ │ ├── BackendClient.ts │ │ │ ├── IBackendClient.ts │ │ │ └── VsCodeBackendClient.ts │ │ ├── states/ │ │ │ ├── DurableOrchestrationStatus.ts │ │ │ ├── ErrorMessageState.ts │ │ │ ├── FilterOperatorEnum.ts │ │ │ ├── FunctionGraphState.ts │ │ │ ├── FunctionGraphStateBase.ts │ │ │ ├── ITypedLocalStorage.ts │ │ │ ├── LoginState.ts │ │ │ ├── MainMenuState.ts │ │ │ ├── MainState.ts │ │ │ ├── MermaidDiagramStateBase.ts │ │ │ ├── QueryString.ts │ │ │ ├── TypedLocalStorage.ts │ │ │ ├── VsCodeTypedLocalStorage.ts │ │ │ ├── az-func-as-a-graph/ │ │ │ │ ├── FunctionsMap.d.ts │ │ │ │ └── buildFunctionDiagramCode.ts │ │ │ ├── details-view/ │ │ │ │ ├── FunctionGraphTabState.ts │ │ │ │ ├── GanttDiagramTabState.ts │ │ │ │ ├── ICustomTabState.ts │ │ │ │ ├── LiquidMarkupTabState.ts │ │ │ │ ├── MermaidDiagramTabState.ts │ │ │ │ ├── OrchestrationDetailsState.ts │ │ │ │ └── SequenceDiagramTabState.ts │ │ │ ├── dialogs/ │ │ │ │ ├── CleanEntityStorageDialogState.ts │ │ │ │ ├── ConnectionParamsDialogState.ts │ │ │ │ ├── PurgeHistoryDialogState.ts │ │ │ │ └── StartNewInstanceDialogState.ts │ │ │ └── results-view/ │ │ │ ├── OrchestrationsState.ts │ │ │ ├── ResultsFunctionGraphTabState.ts │ │ │ ├── ResultsGanttDiagramTabState.ts │ │ │ ├── ResultsHistogramTabState.ts │ │ │ └── ResultsListTabState.ts │ │ └── theme.ts │ ├── tsconfig.json │ └── tslint.json └── tests/ └── durablefunctionsmonitor.dotnetbackend.tests/ ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── AboutTests.cs ├── AuthTests.cs ├── EasyAuthConfigTests.cs ├── FilterClauseTests.cs ├── GlobalsTests.cs ├── IdSuggestionsTests.cs ├── ServeStaticsTests.cs ├── Shared.cs └── durablefunctionsmonitor.dotnetbackend.tests.csproj