We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Handle the console I/O distinctly.
The text was updated successfully, but these errors were encountered:
Test: Start an Alpine container: % cd appscope/test/integration % make alpine-shell
% cd appscope/test/integration
% make alpine-shell
Start Apache scoped: % export SCOPE_EVENT_DEST=file:///opt/test/logs/events.log % ldscope httpd -k start
% export SCOPE_EVENT_DEST=file:///opt/test/logs/events.log
% ldscope httpd -k start
In a second terminal: % cd appscope/test/integration % make alpine-exec % tail -F /opt/test/logs/events.log
% make alpine-exec
% tail -F /opt/test/logs/events.log
Validate that events are emitted as expected: % curl -k https://localhost:443/ View events in the second terminal defined above
% curl -k https://localhost:443/
Detach from Apache: % ps -ef | grep httpd (get a list of pids for httpd) % ldscope --detach <pids> (run once for each httpd pid)
% ps -ef | grep httpd
% ldscope --detach <pids>
Validate that no events are emitted: % curl -k https://localhost:443/ View events in the second terminal defined above
Sorry, something went wrong.
iapaddler
Successfully merging a pull request may close this issue.
Handle the console I/O distinctly.
The text was updated successfully, but these errors were encountered: