Skip to content

Commit

Permalink
Use old falco
Browse files Browse the repository at this point in the history
  • Loading branch information
erthalion committed Jan 29, 2024
1 parent bb50da3 commit 7b7754d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions collector/lib/ProcessSignalFormatter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ ProcessSignal* ProcessSignalFormatter::CreateProcessSignal(sinsp_evt* event) {
signal_lineage->set_parent_uid(p.parent_uid());
}

CLOG(DEBUG) << "Process (" << signal->pid() << "): " << signal->name() << " " << signal->args();
CLOG(DEBUG) << "Process (" << signal->pid() << "): " << signal->name() << " (" << signal->exec_file_path() << ")"
<< " " << signal->args();

return signal;
}
Expand Down Expand Up @@ -201,7 +202,8 @@ ProcessSignal* ProcessSignalFormatter::CreateProcessSignal(sinsp_threadinfo* tin
signal_lineage->set_parent_uid(p.parent_uid());
}

CLOG(DEBUG) << "Process (" << signal->pid() << "): " << signal->name() << " " << signal->args();
CLOG(DEBUG) << "Process (" << signal->pid() << "): " << signal->name() << " (" << signal->exec_file_path() << ")"
<< " " << signal->args();

return signal;
}
Expand Down
2 changes: 1 addition & 1 deletion falcosecurity-libs

0 comments on commit 7b7754d

Please sign in to comment.