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 artifacts/definitions/SUSE/Linux/Events/Services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sources:
LET pattern = "%{NUMBER:pid}\n\{ path\=%{DATA:process} .*\n%{DATA:description}\n%{DATA:state}\n"

-- local function runs systemctl, parses output and deconstructs dict from grok
LET serviceDetails(name) = SELECT pid, process, description, state
LET serviceDetails(name) = SELECT *
FROM foreach(
row= { SELECT grok(data=stdout, grok=pattern) AS parsed
FROM execve(argv=["systemctl", "show", name, "--value", "--property=ExecMainPID,ExecStart,Description,ActiveState"]) },
Expand Down
Loading