:py:mod:`dissect.target.loaders.log` ==================================== .. py:module:: dissect.target.loaders.log Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.log.LogLoader .. py:class:: LogLoader(path: Union[pathlib.Path, str], parsed_path=None) Bases: :py:obj:`dissect.target.loader.Loader` Load separate log files without a target. Usage: ``target-query /evtx/* -L log -f evtx`` .. py:attribute:: LOGS_DIRS .. py:method:: detect(path: pathlib.Path) -> bool :staticmethod: Detects wether this ``Loader`` class can load this specific ``path``. :param path: The target path to check. :returns: ``True`` if the ``path`` can be loaded by a ``Loader`` instance. ``False`` otherwise. .. py:method:: map(target: dissect.target.Target) -> None Maps the loaded path into a ``Target``. :param target: The target that we're mapping into.