Uh oh!
There was an error while loading. Please reload this page.
logging: Ensure journald identifier is simply "cc-proxy" - #181
Conversation
Previously, the identifier used for each proxy log message specified the full path to the proxy binary. This meant that to select proxy log messages it was necessary to specify: ``` $ sudo journalctl -t /usr/libexec/clear-containers/cc-proxy ``` Now, the user can perform the same action with a simple: ``` $ sudo journalctl -t cc-proxy ``` Fixesclearcontainers#180. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
clearcontainersbot
commented
Dec 6, 2017
kubernetes qa-passed 👍 |
grahamwhaley
commented
Dec 6, 2017
just a thought - are there any scripts or tools that do log scraping and collating we need to update to match this ? |
jodh-intel
commented
Dec 6, 2017
Good question. The still-unfinished clearcontainers/tests#590 circumvents the issue by requiring the user to pass the required journal extracts. @sboeuf, @chavafg - can you check for anything else that might be impacted by this? |
chavafg
commented
Dec 6, 2017
@jodh-intel, @grahamwhaley we use |
jodh-intel
commented
Dec 6, 2017
@chavafg - actually, "yes and no" - that now needs to be |
chavafg
commented
Dec 6, 2017
ohh, that's true, forgot about that change, then I'll open a PR to update it. |
jodh-intel
commented
Dec 6, 2017
Thanks! |
Previously, the identifier used for each proxy log message specified
the full path to the proxy binary. This meant that to select proxy log
messages it was necessary to specify:
Now, the user can perform the same action with a simple:
Fixes#180.
Signed-off-by: James O. D. Hunt james.o.hunt@intel.com