-
Notifications
You must be signed in to change notification settings - Fork 2
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
Redesign the JSON graph data structure #85
Labels
Milestone
Comments
jabrena
changed the title
Redesign the graph data structure
Redesign the JSON graph data structure
Jun 28, 2023
This comment was marked as resolved.
This comment was marked as resolved.
Fix the tests tomorrow |
I’m the edges, it is not necessary to maintain the package & dependency |
|
This comment was marked as resolved.
This comment was marked as resolved.
Improve nodes: {
"edges" : [
{
"source" : {
"beanName" : "SimpleObservationRegistry",
"beanPackage" : "io.micrometer.observation",
"dependency" : "micrometer-observation-1.11.0.jar"
},
"target" : {
"beanName" : "ObservationAutoConfiguration",
"beanPackage" : "UNKNOWN",
"dependency" : "UNKNOWN"
}
}
],
"nodes" : [
{
"beanName" : "SimpleObservationRegistry",
"beanPackage" : "io.micrometer.observation",
"dependency" : "micrometer-observation-1.11.0.jar"
}
]
} |
I need to find a good test strategy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, the Graph based on D3.js only use information about Edge to recreate Nodes.
Besides, few Edges are false Edges because target is null.
With a better Graph representation should be better.
===
The text was updated successfully, but these errors were encountered: