Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed: analyze flt_trace offline #332

Merged
merged 15 commits into from
Jul 16, 2024
Merged
2 changes: 0 additions & 2 deletions handler/analyzer/analyze_flt_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,6 @@ def __get_offline_log_file(self, ssh_client, log_path, local_store_dir):
if self.flt_trace_id is not None and (len(log_name_list) > 0):
grep_cmd = "grep -e '{grep_args}' {log_file} > {local_store_path} ".format(grep_args=self.flt_trace_id, log_file=' '.join(log_name_list), local_store_path=local_store_path)
LocalClient(self.stdio).run(grep_cmd)
log_full_path = "{gather_path}/{log_name}".format(gather_path=log_path, log_name=self.flt_trace_id)
download_file(ssh_client, log_full_path, local_store_path, self.stdio)

def __get_log_name_list_offline(self):
"""
Expand Down
Loading