X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fpal.py;h=02aae667029e72dd100cdb9e02fd2e5905062713;hb=5c52ec46ecf32bcbd968a574990596d536c15bf3;hp=01eb8f64fffa8ae0399516389b47d2d9ffb72823;hpb=cbfa26dc0f5334bcd367c161b4eaad342355bbde;p=csit.git diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py index 01eb8f64ff..02aae66702 100644 --- a/resources/tools/presentation/pal.py +++ b/resources/tools/presentation/pal.py @@ -61,6 +61,10 @@ def parse_args(): parser.add_argument(u"-f", u"--force", action=u"store_true", help=u"Force removing the old build(s) if present.") + parser.add_argument(u"-o", u"--print-all-oper-data", + action=u"store_true", + help=u"Print all operational data to console. Be " + u"careful, the output can be really long.") return parser.parse_args() @@ -103,6 +107,8 @@ def main(): data = InputData(spec) data.download_and_parse_data(repeat=1) + if args.print_all_oper_data: + data.print_all_oper_data() generate_tables(spec, data) generate_plots(spec, data)