diff options
author | Muxi Yan <mxyan@google.com> | 2017-01-10 03:13:30 +0000 |
---|---|---|
committer | Muxi Yan <mxyan@google.com> | 2017-01-10 03:13:30 +0000 |
commit | 217548d0f9f8b8ea671290bd990d076cc3741139 (patch) | |
tree | 0f96657c954f6ce10be2568b02e5dae7fe0bcb51 /tools/run_tests/build_stats/build_stats_schema.json | |
parent | 871626ff160b6431c3b20ba906d80f4aa7edc0c1 (diff) | |
parent | a3960b98d6a1b85a1e3b89cd7797a509505fa207 (diff) |
Merge remote-tracking branch 'upstream/master' into change_cronet_interface
Diffstat (limited to 'tools/run_tests/build_stats/build_stats_schema.json')
-rw-r--r-- | tools/run_tests/build_stats/build_stats_schema.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/tools/run_tests/build_stats/build_stats_schema.json b/tools/run_tests/build_stats/build_stats_schema.json new file mode 100644 index 0000000000..021a349545 --- /dev/null +++ b/tools/run_tests/build_stats/build_stats_schema.json @@ -0,0 +1,56 @@ +[ + { + "name": "build_number", + "type": "INTEGER", + "mode": "NULLABLE" + }, + { + "name": "timestamp", + "type": "TIMESTAMP", + "mode": "NULLABLE" + }, + { + "name": "matrix", + "type": "RECORD", + "mode": "REPEATED", + "fields": [ + { + "name": "name", + "type": "STRING", + "mode": "NULLABLE" + }, + { + "name": "duration", + "type": "FLOAT", + "mode": "NULLABLE" + }, + { + "name": "pass_count", + "type": "INTEGER", + "mode": "NULLABLE" + }, + { + "name": "failure_count", + "type": "INTEGER", + "mode": "NULLABLE" + }, + { + "name": "error", + "type": "RECORD", + "mode": "REPEATED", + "fields": [ + { + "name": "description", + "type": "STRING", + "mode": "NULLABLE" + }, + { + "name": "count", + "type": "INTEGER", + "mode": "NULLABLE" + } + ] + } + ] + } +] |