diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-03-24 14:08:25 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-03-24 14:08:25 +0100 |
commit | c6d4e8b0f4a9295006236f8f50cac6bc3e0d00db (patch) | |
tree | c89ed06b8961dc7ed356492b34c818d8331b8cdc /bin | |
parent | c38015375ef14b54f918599297a6a21da41c9dec (diff) |
Workload is an EventSequenceModel, actually
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/workload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/workload.py b/bin/workload.py index 5d71932..72b66bb 100755 --- a/bin/workload.py +++ b/bin/workload.py @@ -6,8 +6,8 @@ import logging import sys import dfatool.cli import dfatool.utils +from dfatool.behaviour import EventSequenceModel from dfatool.model import AnalyticModel -from dfatool.workload import Workload def main(): @@ -72,7 +72,7 @@ def main(): for attr in models[i].attributes(name): print(f" {name}.{attr} {param_info(name, attr)}") - workload = Workload(models) + workload = EventSequenceModel(models) aggregate = workload.eval_strs( args.event, aggregate=args.aggregate, |