D2Processes
Show running processes
- Type
- javascript
- Pack
- D2
Source
function processesUnix() {
var output = execute('ps ax');
if (output.Success) {
pack(output.Stdout);
} else {
throw output.Error;
}
}
function processesWindows() {
var ps = wmi_query('select ProcessId, CommandLine, ThreadCount, WorkingSetSize, Description From Win32_Process');
pack(ps, 'table');
}
try {
if (env.OS === 'windows') {
processesWindows();
} else {
processesUnix();
}
} catch (ex) {
pack('Error: ' + ex);
}
README
Shows the running processes.
Script Data
| Name | Description |
|---|---|
| Script Type | javascript |
| Tags | agent, endpoint |
Inputs
There are no inputs for this script.
Outputs
There are no outputs for this script.