This document is oriented at developers who want to use Gubernator to debug while developing for Kubernetes.
Gubernator is a webpage for viewing and filtering Kubernetes test results.
Gubernator simplifies the debugging proccess and makes it easier to track down failures by automating many steps commonly taken in searching through logs, and by offering tools to filter through logs to find relevant lines. Gubernator automates the steps of finding the failed tests, displaying relevant logs, and determining the failed pods and the corresponing pod UID, namespace, and container ID. It also allows for filtering of the log files to display relevant lines based on selected keywords, and allows for multiple logs to be woven together by timestamp.
Gubernator runs on Google App Engine and fetches logs stored on Google Cloud Storage.
Issues made by k8s-merge-robot will post a link to a page listing the failed tests. Each failed test comes with the corresponding error log from a junit file and a link to filter logs for that test.
Based on the message logged in the junit file, the pod name may be displayed.
The log filtering page comes with checkboxes and textboxes to aid in filtering. Filtered keywords will be bolded and lines including keywords will be highlighted. Up to four lines around the line of interest will also be displayed.
If less than 100 lines are skipped, the "... skipping xx lines ..." message can be clicked to expand and show the hidden lines.
Before expansion: After expansion:
If the pod name was displayed in the Test Failures list, it will automatically be included in the filters. If it is not found in the error message, it can be manually entered into the textbox. Once a pod name is entered, the Pod UID, Namespace, and ContainerID may be automatically filled in as well. These can be altered as well. To apply the filter, check off the options corresponding to the filter.
To add a filter, type the term to be filtered into the textbox labeled "Add filter:" and press enter. Additional filters will be displayed as checkboxes under the textbox.
To choose which logs to view check off the checkboxes corresponding to the logs of interest. If multiple logs are included, the "Weave by timestamp" option can weave the selected logs together based on the timestamp in each line.
Currently Gubernator can only be used with remote node e2e tests.
NOTE: Using Gubernator with local tests will publically upload your test logs to Google Cloud Storage
To use Gubernator to view logs from local test runs, set the GUBERNATOR tag to true. A URL link to view the test results will be printed to the console. Please note that running with the Gubernator tag will bypass the user confirmation for uploading to GCS.
$ make test-e2e-node REMOTE=true GUBERNATOR=true
...
================================================================
Running gubernator.sh
Gubernator linked below:
k8s-gubernator.appspot.com/build/yourusername-g8r-logs/logs/e2e-node/timestamp
The gubernator.sh script can be run after running a remote node e2e test for the same effect.
$ ./test/e2e_node/gubernator.sh
Do you want to run gubernator.sh and upload logs publicly to GCS? [y/n]y
...
Gubernator linked below:
k8s-gubernator.appspot.com/build/yourusername-g8r-logs/logs/e2e-node/timestamp
Gubernator provides a framework for debugging failures and introduces useful features. There is still a lot of room for more features and growth to make the debugging process more efficient.
How to contribute (see https://github.com/kubernetes/test-infra/blob/master/gubernator/README.md)
-
Extend GUBERNATOR flag to all local tests
-
More accurate identification of pod name, container ID, etc.
- Change content of logged strings for failures to include more information
- Better regex in Gubernator
-
Automate discovery of more keywords
- Volume Name
- Disk Name
- Pod IP
-
Clickable API objects in the displayed lines in order to add them as filters
-
Construct story of pod's lifetime
- Have concise view of what a pod went through from when pod was started to failure
-
Improve UI
- Have separate folders of logs in rows instead of in one long column
- Improve interface for adding additional features (maybe instead of textbox and checkbox, have chips)