parser=argparse.ArgumentParser(description="Python script to read a workload trace in the Standard Workload Format (SWF), decompose it into user sessions, analyse the dependencies between sessions and store the results in the Session Annotated Batsim JSON format (SABjson).")
parser.add_argument('input_swf',
type=argparse.FileType('r'),
help='The input SWF file')
...
...
@@ -135,6 +140,10 @@ if __name__ == "__main__":
"about the original session durations (finish times) that are NOT "
"embedded in the SABjsons."
)
parser.add_argument(
'--no_SABjson_output',action="store_true",
help="Disable SABjson output (for graph-only or session_stat-only usages)."