Skip to content

Commit 0633ab4

Browse files
authored
Add more columns to honggfuzz schema. (#1234)
1 parent a8071eb commit 0633ab4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/python/metrics/fuzzer_stats_schema.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,30 @@
467467
'mode': 'NULLABLE',
468468
'name': 'speed',
469469
'type': 'INTEGER'
470+
}, {
471+
'mode': 'NULLABLE',
472+
'name': 'kind',
473+
'type': 'STRING'
474+
}, {
475+
'mode': 'NULLABLE',
476+
'name': 'timestamp',
477+
'type': 'FLOAT'
478+
}, {
479+
'mode': 'REPEATED',
480+
'name': 'command',
481+
'type': 'STRING'
482+
}, {
483+
'mode': 'NULLABLE',
484+
'name': 'build_revision',
485+
'type': 'INTEGER'
486+
}, {
487+
'mode': 'NULLABLE',
488+
'name': 'fuzzer',
489+
'type': 'STRING'
470490
}]
471491

492+
# TODO(ochang): Factor out common schema items.
493+
472494
_SCHEMA = {
473495
'afl': _AFL_SCHEMA,
474496
'honggfuzz': _HONGGFUZZ_SCHEMA,

0 commit comments

Comments
 (0)