diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-02-04 09:49:54 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-02-07 09:30:25 +0000 |
commit | 2c06090c7b919783a91d3ca9ca8c8319b5c35b07 (patch) | |
tree | 4f472c2f418d5ae17d9ca6a4bd84c86f674cc4ad /resources/tools/presentation/pal.py | |
parent | 107438e93a51eefc61dc171cfa9b959007ccc739 (diff) |
PAL: Operational data
Change-Id: I43eb12117ddc9b6df447f0303881bf7ec6153900
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/pal.py')
-rw-r--r-- | resources/tools/presentation/pal.py | 6 |
1 files changed, 6 insertions, 0 deletions
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) |