Skip to content
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

Show outages on the network map #55

Closed
Svedrin opened this issue Aug 12, 2024 · 0 comments · Fixed by #59
Closed

Show outages on the network map #55

Svedrin opened this issue Aug 12, 2024 · 0 comments · Fixed by #59
Labels
enhancement New feature or request

Comments

@Svedrin
Copy link
Owner

Svedrin commented Aug 12, 2024

child of #52

When a target goes down, have the network map show exactly where the outage occurred by drawing all the nodes red that don't respond anymore.

For this to work, we need to store a separate copy of the traceroute while the target is still alive ("last known good traceroute", so to speak), and then render all the nodes red that are missing from the current one when the target is down.

Necessary PlantUML syntax:

<style>
.nodeDown {
    BackgroundColor Crimson
    FontColor White
}
</style>

hide <<nodeDown>> stereotype

node "meshpingpi3" <<nodeDown>> as SELF

Result:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant