-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Feat/topology #1426
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
Open
sohandsomejie
wants to merge
33
commits into
apache:feat/topology
Choose a base branch
from
sohandsomejie:feat/topology
base: feat/topology
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feat/topology #1426
Changes from 4 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
e20fd47
chore: 在App.vue中添加注释标记
sohandsomejie d4397cc
feat(graph): add service graph visualization and related data structures
ambiguous-pointer 13f7855
feat(service): enhance SearchServiceAsCrossLinkedList to merge duplic…
ambiguous-pointer c9e76b5
fix(license): restore license header in graph.go
ambiguous-pointer 605e63e
Merge branch 'develop' into develop
ambiguous-pointer 82474b6
Apply suggestion from @Copilot
ambiguous-pointer 82e2512
rm: remove useless files (#1416)
robocanic 7b1550d
feat(ui): 新增应用与服务拓扑图功能并引入图标字体
sohandsomejie a570632
Merge branch 'develop' of https://github.com/sohandsomejie/dubbo-admi…
sohandsomejie 14a9f70
Merge branch 'apache:develop' into develop
sohandsomejie 7820521
chore: 移除 App.vue 中遗留的注释标记
sohandsomejie 9adece0
feat(service): add service detail and interfaces endpoints with reque…
ambiguous-pointer 705adf1
Merge branch 'develop' of https://github.com/ambiguous-pointer/dubbo-…
ambiguous-pointer c91ca09
Potential fix for pull request finding
sohandsomejie 4906c48
feat:Update the list interface and detail interface
sohandsomejie 6d6a353
Merge pull request #1 from ambiguous-pointer/develop
sohandsomejie 3295434
feat:update baseURL
sohandsomejie 2d44a99
refactor(api): Unify interface naming and adjust service topology par…
sohandsomejie 4d17607
refactor(router): Temporarily comment out the application topology ro…
sohandsomejie ec894a1
refactor(api): Optimize service and application details interface par…
sohandsomejie 6fb340d
feat(service topology): Support application details display and enhan…
sohandsomejie 1efdb31
refactor(ui): Optimize the topology detail display logic and remove d…
sohandsomejie 07d3027
feat(application graph): Add endpoint and model for application graph…
ambiguous-pointer 8ee5b0d
feat: enhance service management with detailed service graph and deta…
mochengqian 862778a
Merge remote-tracking branch 'origin-yj/topology-chengqian' into feat…
ambiguous-pointer d66cf0a
feat(service): refactor service detail and graph retrieval functions;…
ambiguous-pointer cdfef00
feat(graph): enhance application graph generation by initializing sel…
ambiguous-pointer 4eee43b
refactor(service): remove providerAppName from service pages and use …
mochengqian 89d38ca
fix(service): infer language when provider metadata omits it
mochengqian 6d6f5ce
chore(test): remove language inference unit test
mochengqian 5ed12b5
feat(router): Enable application domain topology view routing
sohandsomejie 76c9443
Merge branch 'feat/topology' of https://github.com/sohandsomejie/dubb…
sohandsomejie 4f0b9f6
refactor(topology): Remove the blacklist filtering logic for detailed…
sohandsomejie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getApplicationGraphis calling/application/graphwith query paramserviceName, but the backend request model bindsappName(form:"appName"). This mismatch will result in empty/incorrect graphs. Align the param name (and function argument naming) toappName.