xref: /aosp_15_r20/external/skia/infra/bots/analysis/README.md (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1# Job Analysis
2
3A set of scripts that analyzes `jobs.json` to look for possible holes in our
4testing.
5
6## Requirements
7
8To run the scripts you need to have both `jq` and `mlr` installed on your
9machine.
10
11    $ sudo apt install jq miller
12
13## Running
14
15The Makefile contains common queries that can be run against the data.
16
17For example, to find all cpu_or_gpu_values that we currently don't run Perf
18tests on you would run:
19
20    $ make missing_perf_jobs
21
22See https://miller.readthedocs.io/en/latest/reference-dsl.html more details on
23the the kinds of queries that can be done against CSV files.
24