Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/instana/fsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def announce_sensor(self, e: Any) -> bool:
# rely on ps rather than adding a dependency on something like
# psutil which requires dev packages, gcc etc...
proc = subprocess.Popen(
["ps", "-p", str(pid), "-o", "command"], stdout=subprocess.PIPE
["ps", "-p", str(pid), "-o", "args"], stdout=subprocess.PIPE
)
(out, _) = proc.communicate()
parts = out.split(b"\n")
Expand Down
Loading