From: Jeremy Spewock <jspewock@iol.unh.edu>
The messages being logged by interactive shells currently are using the
same logger as the node they were created from. Because of this, when
sending interactive commands, the logs make no distinction between when
you are sending a command directly to the host and when you are using an
interactive shell on the host. This change adds names to interactive
shells so that they are able to use their own loggers with distinct
names.
Signed-off-by: Jeremy Spewock <jspewock@iol.unh.edu>
---
dts/framework/remote_session/dpdk_shell.py | 3 ++-
dts/framework/remote_session/interactive_shell.py | 9 +++++++--
dts/framework/remote_session/testpmd_shell.py | 2 ++
dts/framework/testbed_model/traffic_generator/scapy.py | 4 +++-
4 files changed, 14 insertions(+), 4 deletions(-)
@@ -81,6 +81,7 @@ def __init__(
append_prefix_timestamp: bool = True,
start_on_init: bool = True,
app_params: EalParams = EalParams(),
+ name: str | None = None,
) -> None:
"""Extends :meth:`~.interactive_shell.InteractiveShell.__init__`.
@@ -95,7 +96,7 @@ def __init__(
append_prefix_timestamp,
)
- super().__init__(node, privileged, timeout, start_on_init, app_params)
+ super().__init__(node, privileged, timeout, start_on_init, app_params, name)
def _update_real_path(self, path: PurePath) -> None:
"""Extends :meth:`~.interactive_shell.InteractiveShell._update_real_path`.
@@ -25,7 +25,7 @@
InteractiveSSHSessionDeadError,
InteractiveSSHTimeoutError,
)
-from framework.logger import DTSLogger
+from framework.logger import DTSLogger, get_dts_logger
from framework.params import Params
from framework.settings import SETTINGS
from framework.testbed_model.node import Node
@@ -73,6 +73,7 @@ def __init__(
timeout: float = SETTINGS.timeout,
start_on_init: bool = True,
app_params: Params = Params(),
+ name: str | None = None,
) -> None:
"""Create an SSH channel during initialization.
@@ -84,9 +85,13 @@ def __init__(
and no output is gathered within the timeout, an exception is thrown.
start_on_init: Start interactive shell automatically after object initialisation.
app_params: The command line parameters to be passed to the application on startup.
+ name: Name for the interactive shell to use for logging. This name will be appended to
+ the name of the underlying node which it is running on.
"""
self._node = node
- self._logger = node._logger
+ if name is None:
+ name = type(self).__name__
+ self._logger = get_dts_logger(f"{node.name}.{name}")
self._app_params = app_params
self._privileged = privileged
self._timeout = timeout
@@ -605,6 +605,7 @@ def __init__(
ascending_cores: bool = True,
append_prefix_timestamp: bool = True,
start_on_init: bool = True,
+ name: str | None = None,
**app_params: Unpack[TestPmdParamsDict],
) -> None:
"""Overrides :meth:`~.dpdk_shell.DPDKShell.__init__`. Changes app_params to kwargs."""
@@ -617,6 +618,7 @@ def __init__(
append_prefix_timestamp,
start_on_init,
TestPmdParams(**app_params),
+ name,
)
def start(self, verify: bool = True) -> None:
@@ -261,7 +261,9 @@ def __init__(self, tg_node: Node, config: ScapyTrafficGeneratorConfig):
self._tg_node.config.os == OS.linux
), "Linux is the only supported OS for scapy traffic generation"
- self.session = PythonShell(self._tg_node, timeout=5, privileged=True)
+ self.session = PythonShell(
+ self._tg_node, timeout=5, privileged=True, name="ScapyXMLRPCServer"
+ )
# import libs in remote python console
for import_statement in SCAPY_RPC_SERVER_IMPORTS: