-
Notifications
You must be signed in to change notification settings - Fork 712
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
Improve titles and context of tables in the details pane #387
Conversation
In situations when the details can refer to entities from multiple hosts (e.g. container image) make explicit to what host we are referring to.
d2bf737
to
badd228
Compare
Title modifications: * "Origin Process" -> "Process \"name\" (pid)" * "Origin Container" -> "Container \"name\" (pid)" * "Origin Host" -> "Host \"name\"" * "Origin Container Image" -> "Container Image \"name\""
badd228
to
75595a5
Compare
human string | ||
parent string | ||
renderer render.Renderer | ||
isMultiHost bool // does the view involve information from multiple hosts? |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
@tomwilkie I've realized that providing Host context is not enough. In the Container Image view, when showing processes from containers, I should also be providing what container they belong to since they can belong to different containers. I will add that later today. |
Oh yes good idea. Take a look at #366 to see how I did something similar for process labels. |
f5b2629
to
d1126f9
Compare
} | ||
} | ||
multiHost := len(originHosts) > 1 | ||
multiContainer := len(originContainers) > 1 |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
1 comment, otherwise LGTM |
Improve titles and context of tables in the details pane
Fixes #296