File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5581,6 +5581,8 @@ def store():
55815581 '%Y-%m-%d %H:%M:%S' )
55825582 elif line .lstrip ().startswith ('flags:' ):
55835583 current ['flags' ] = line .split (':' )[1 ].strip ().split (',' )
5584+ elif line .lstrip ().startswith ('plugins:' ):
5585+ current ['plugins' ] = line .split (':' )[1 ].strip ().split (',' )
55845586 else : # pragma: no cover
55855587 raise InterfaceError (f"Unexpected line in trace session list: { line } " )
55865588 store ()
Original file line number Diff line number Diff line change @@ -1372,12 +1372,14 @@ class TraceSession:
13721372 timestamp (datetime.datetime): Session start timestamp
13731373 name (str): Session name (if defined)
13741374 flags (list): List with session flag names
1375+ plugins (list): List with trace plugins for this session
13751376 """
13761377 id : int
13771378 user : str
13781379 timestamp : datetime .datetime
13791380 name : str = ''
13801381 flags : list = field (default_factory = list )
1382+ plugins : list = field (default_factory = list )
13811383
13821384@dataclass
13831385class ImpData :
You can’t perform that action at this time.
0 commit comments