-
Notifications
You must be signed in to change notification settings - Fork 250
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 host healthcheck display mode #1722
Conversation
elif state == "DELETE": | ||
return "Agent is removed from the current environment" | ||
elif state == "UNREACHABLE": | ||
return "Agent is unreachable after not responding to ping from teletraan server" |
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.
Agent has not pinged Teletraan control plane for X minutes?
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.
Don't want to explicitly include the timeout duration to become UNREACHABLE as this is set by the backend. How about:
Agent is unreachable after not pinging Teletraan control plane within the threshold
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.
That's better.
A demo can be found here. In the demo, the states are unsorted, but in a live environment the states will be sorted and the view will be more organized & cohesive. The demo is only to show visual examples of many possible states.
https://jira.pinadmin.com/browse/CDP-8108