triage

command module
v0.0.0-...-abf7d05 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 4, 2024 License: Apache-2.0 Imports: 1 Imported by: 0

README

Triage

Triage identifies clusters of similar test failures across all jobs.

Use it here: https://go.k8s.io/triage

Intro

Triage consists of two parts: a summarizer, which clusters together similar test failure messages, and a web page which can be used to browse the results. The web page is a static HTML page which grabs the results in JSON format, parses them, and displays them.

Usage

Triage summarization is generally run via update_summaries.sh, which downloads the input files in the correct format and passes them automatically to triage. (File formats are listed below.) However, summarization can be run directly with the following flags:

  • builds: a path to a JSON file containing build information
  • previous (optional): a path to a previous output which can be used to maintain consistent cluster IDs
  • owners (optional): a path to a file that maps SIGs to the labels they own (see Methodology); no longer used as labels are read straight from test names
  • output (optional): the path to where the output should be written to; defaults to ./failure_data.json
  • output_slices (optional): a pattern to be used when outputting slices, if desired (see Methodology); e.g. slices/failure_data_PREFIX.json, where PREFIX will be replaced with some identifier
  • num_workers (optional): the number of worker goroutines to spawn for parallelized functions; defaults to 2*runtime.NumCPU()-1. (Since CPU detection is unreliable in Kubernetes, we set it manually according to the number of CPUs in test-infra-periodics.yaml.)
  • memoize (optional): whether to memoize certain function results to JSON (and use previously memoized results if they exist); defaults to false
  • ...tests: after all named flags are passed in, a space-delimited series of paths to files containing test information should be passed in as well

Triage uses klog for logging, so klog flags can be passed in as well.

The web page can be accessed at https://go.k8s.io/triage with the following options:

  • Date: defaults to "today"; note that all usages of "today" on the page refer to the currently set date
  • Show clusters for SIG: filter results by the SIG assigned to the majority of the tests; allows multi-select
  • Include results from: toggle between CI tests, PR tests, or both
  • Sort by: basic sorting
  • Include filter/Exclude filter: advanced regex filtering by field

Note that the clusters at the top of the web page are static, and must be added/removed manually. Simply adding a button to the HTML is enough.

Go Packages

Package berghelroach contains a modified Levenshtein distance formula. Its only export is a Dist() function.
Package summarize depends on package berghelroach and does the actual heavy lifting.

Methodology

The entire process is orchestrated by update_summaries.sh, as follows:

  1. Download all builds for the last 14 days from BigQuery.
  2. Download all failed tests for the last 14 days from BigQuery.
  3. Run triage:
    1. Load the downloaded files, and convert them into a format that Go can handle better (i.e. by parsing numbers).
    2. Group the builds by their build paths, and the test failures by their test names.
    3. Load previous results (if any) to aid in computation.
    4. Create a local clustering of the test failures from step 2. This splits each group of test failures into local clusters, i.e. groups of failures with similar failure texts. The mapping at this point is Test Name => Local Cluster Text => Group of Test Failures.
    5. Create a global clustering of the local clusters from the previous step, optionally using the previous results. This takes each local cluster and attempts to find clusters from other tests with similar cluster texts. If one is found, they are merged into a global cluster, with each test's failures remaining separate within the global cluster. The mapping at this point is Global Cluster Text => Test Name => Group of Test Failures.
    6. Transform the global clustering into a format that compresses better, and which is consumable by the web page.
    7. If a mapping of owners to owner prefixes (such as sig-testing => [sig-testing]) was provided as a flag, load it.
    8. Annotate each cluster with an owner, by parsing the test name or using the provided mapping from the previous step. This can be used to filter the clusters by SIG on the web page.
    9. Write the results to a JSON file.
    10. If the output_slices flag is set, create individual files ("slices") for each owner. Also, split the results into 256 slices based on the cluster IDs. Write the slices to JSON files.
  4. Upload the results into Google Cloud Storage so they can be browsed via the web page.

File Structure

Below are the file structures for the ingested and outputted files. ... denotes a repetition of the previous element. "x Flag" denotes the file format of a file passed to flag x of the summarizer.

Main Output
{
   "clustered": [
      {
         "key": string,
         "id": string,
         "text": string,
         "spans": [
            int,
            ...
         ],
         "tests": [
            {
               "name": string,
               "jobs": [
                  {
                     "name": string,
                     "builds": [
                        int,
                        ...
                     ]
                  },
                  ...
               ]
            },
            ...
         ],
         "owner": string,
      },
      ...
   ],
   "builds": {
      "jobs": {
         string: ([int, ...] OR {int as string: int, ...})  // See the description of the jobCollection type
      },
      "cols": {
         "started": [int, ...],
         "tests_failed": [int, ...],
         "elapsed": [int, ...],
         "tests_run": [int, ...],
         "result": [string, ...],
         "executor": [string, ...],
         "pr": [string, ...]
      },
      "job_paths": {
         string: string,
         ...
      },
   }
}
builds Flag
[
   {
      "path": string,
      "started": int as string,
      "elapsed": int as string,
      "tests_run": int as string,
      "tests_failed": int as string,
      "result": string,
      "executor": string,
      "job": string,
      "number": int as string,
      "pr": string,
      "key": string
   },
   ...
]
tests Flag

This is a newline-delimited list of JSON objects. Note the lack of comma between objects.

{
   "started": int as string,
   "build": string,
   "name": string,
   "failure_text": string
}
...
previous Flag

See Main Output.

owners Flag
{
   string: [
      string,
      ...
   ],
   ...
}
Slice Output

See Main Output. This is only a subset of the main output.

Updating JS dependencies for the web page

See: package.json + ./hack/build/ensure-node_modules.sh

Deployment

Triage runs as static HTML hosted in GCS that is updated as part of a Prow Periodic.

To update the triage image run make push from ./triage which will trigger a cloudbuild using //images/builder. This will result in a fresh triage image within the cloud image registry of the k8s-testimages project. (See Container Registry -> Images)

To update Triage frontend in Production or Staging manually run make push-static or make push-staging respectively. Otherwise it is updated on postsubmit via post-test-infra-upload-triage.

Staging

To access staging see Triage Staging.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package berghelraoch is a modification of the original Berghel-Roach edit distance (based on prior work by Ukkonen) described in
Package berghelraoch is a modification of the original Berghel-Roach edit distance (based on prior work by Ukkonen) described in
Package summarize groups test failures together by finding edit distances between their failure messages, and emits JSON for rendering in a browser.
Package summarize groups test failures together by finding edit distances between their failure messages, and emits JSON for rendering in a browser.
Package utils is a small collection of utility functions helpful to Triage.
Package utils is a small collection of utility functions helpful to Triage.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL