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

CLI: Add new command - ws - for listing & logs of workspaces #2717

Merged
merged 2 commits into from
Oct 8, 2016

Conversation

TylerJewell
Copy link

@TylerJewell TylerJewell commented Oct 5, 2016

What does this PR do?

1: Adds in functionality to let users list all workspaces and then display the logs of a running workspace.

2: Provides some limited discovery - if no running workspaces, returns an error. If 1 running workspace, will automatically display the logs for that. If 2+ workspaces, lists the workspaces and their ws-id asking user to pick which one they want.

che ws list                            List all workspaces
che ws logs [<ws-id>]                  Get the agent logs for a workspace

3: Fixes a bug in the --networking command where the use of the new curl command requires --net=host to operate properly. This bug was previously unreported, but was discovered in testing the info changes.

4: Adds in logic so that INFO: command either prints out no pre-info (such as what we need for certain long-output command) or prints out (che <command-name>): as a prefix.

5: Simplifies all error: messages to remove any product name from it.

PR type

  • Minor change = no change to existing features or docs

@TylerJewell TylerJewell added the kind/enhancement A feature request - must adhere to the feature request template. label Oct 5, 2016
@TylerJewell TylerJewell added this to the 5.0.0-M6 milestone Oct 5, 2016
@TylerJewell TylerJewell self-assigned this Oct 5, 2016
@TylerJewell
Copy link
Author

@xcoulon @benoitf - FYI. Xavier, I modified your logic a bit because the CLI on the user's machine can have different YEAR / MONTH / DAY. Instead, I grab all log files and print them out.

@codenvy-ci
Copy link

Build # 636 - FAILED

Please check console output at https://ci.codenvycorp.com/job/che-pullrequests-build/636/ to view the results.

fi

info "Displaying logs for container $WS_ID"
docker_exec exec ${WS_ID} find /home/ -iname "catalina-0.log" -exec tail -n200 {} \;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TylerJewell My initial code was using the current date to compute the path to the catalina logs. Also, I used the -f flag on the tail command to keep displaying upcoming logs.
Also, why do you call the docker_exec() function here ? Why not just use the docker command ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ha sorry, I missed the comment above where you explained that you changed the logic to skip the YEAR / MONTH / DAY part (although, I wonder why those were different). Or did you need to check the logs for another date ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the -f because it was consistent with all of our other commands that we have in the CLI, which always return from execution of the command itself. So, as a general rule, I'd like to try and preserve that functionality. The only deviation from that rule right now is with `che mount which has to run indefinitely and cannot be sent to execute in the background.

docker_exec() is an internal function that we use in the CLI to determine which type of docker command to run. If you are on windows, there is an environment variable that must be passed in order for volume mounts to work properly. The function is probably not nicely named because docker_exec is really to just execute the docker command, not docker exec. So there is some word play.

The issue I had with keeping the YEAR / MONTH / DAY was that there was no way to have those variables executed within the container. It was always executed on the host system first, so there was always going to be the possibility of a date mismatch.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think a proper long term solution would be to find a way to enable docker logs -f <container-id> on these workspace containers. I'll talk to Alex about what we need to do to activate that. I think it has to do with the way that the services are started.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it would be nice to allow to get live logs as well
che ws logs(print current)
che ws -f logs(print live)

And I also agree that it could be nice to get logs through docker logs command but I think these logs are coming from the streams of the CMD that we launch. As it's launched by an agent it may be difficult.

BTW now that we've tons of agents, I would also be able to get logs for each agent as well.

Is this command is also working in compose mode as well ? or it will try to get logs on each machine of the workspace id ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right now - it only grabs a single machine set of logs. If there are multiple machines that are running, then it asks the user to choose which machine that they should connect to. One of the improvements that I could make is to scan all of the machines that are running, and only list the workspace machines that are running a dev agent on it, and then allow for connection into that.

@@ -779,7 +852,7 @@ execute_che_mount() {

# If extra parameter provided, then this is the port to connect to
if [ $# -eq 1 ]; then
info "${CHE_MINI_PRODUCT_NAME} mount: Connecting to remote workspace on port ${1}"
info "${CHE_MINI_PRODUCT_NAME} mount: Connecting to workspace on port ${1}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should be using PRODUCT_NAME and not mini name, no ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I simplified things. I have two modes for INFO now. for certain outputs like che info where there is a lot of streming output, I do not print out any additional information other than INFO:. For others, I print out ($CHE_MINI_PRODUCT_NAME <command-name>): <statement>

@codenvy-ci
Copy link

Build # 649 - FAILED

Please check console output at https://ci.codenvycorp.com/job/che-pullrequests-build/649/ to view the results.

@TylerJewell TylerJewell merged commit 76417ef into master Oct 8, 2016
@TylerJewell TylerJewell deleted the cli-add-ws branch October 8, 2016 16:45
JPinkney pushed a commit to JPinkney/che that referenced this pull request Aug 17, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement A feature request - must adhere to the feature request template.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants