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

3.10 Improve process table in inventory tab #787

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@
<div layout="row" ng-if="agent && syscollector" class="wz-margin-top-10 wz-margin-bottom-40-inv">
<wazuh-table flex ng-if="agent && agent.os && agent.os.platform === 'windows'"
path="'/syscollector/' + agent.id + '/processes'" row-sizes="[10,8,6]" extra-limit="100"
keys="['name','cmd','priority','nlwp']">
keys="['name','pid','ppid','cmd','vm_size','priority','nlwp']">
</wazuh-table>
<wazuh-table flex ng-if="agent && agent.os && agent.os.platform !== 'windows'"
path="'/syscollector/' + agent.id + '/processes'" row-sizes="[10,8,6]" extra-limit="100"
keys="['name','euser','nice','state']">
keys="['name','euser','egroup','pid','ppid','cmd','argvs','vm_size','size','session','nice','state']">
</wazuh-table>
</div>
</md-card-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,56 @@ define(['../module'], function(module) {
expanded: 'Expanded',
title: 'Title',
result: 'Result',
agents: 'Agents'
agents: 'Agents',
'os.arch': 'OS version architecture',
'os.build': 'OS version build',
'os.codename': 'OS code name',
'os.major': 'OS version major',
'os.minor': 'OS version minor',
'os.platform': 'OS platform',
'os.uname': 'OS uname',
event: 'Event',
euser: 'Effective user',
egroup: 'Effective group',
vm_size: 'VM size',
processor: 'Processor',
session: 'Session',
tty: 'TTY',
pid: 'PID',
ppid: 'Parent PID',
argvs: 'Argvs',
nice: 'Priority',
size: 'Size',
inode: 'Inode',
uid: 'User ID',
gid: 'Group ID',
mtime: 'Last modified',
priority: 'Priority',
cmd: 'CMD',
nlwp: 'NLWP',
references: 'References',
remediation: 'Remediation',
directory: 'Path(s)',
rationale: 'Rationale',
registry: 'Registry',
location: 'Location',
mtu: 'MTU',
t: 'tracing stop',
P: 'Parked',
I: 'Idle',
D: 'Uninterruptible sleep (usually IO)',
R: 'Running or runnable (on run queue)',
S: 'Interruptible sleep (waiting for an event to complete)',
T: 'Stopped, either by a job control signal or because it is being traced.',
W: 'paging (not valid since the 2.6.xx kernel)',
X: 'Dead (should never be seen)',
Z: 'Defunct ("zombie") process, terminated but not reaped by its parent.',
'<': 'High-priority (not nice to other users)',
N: 'Low-priority (nice to other users)',
L: 'Has pages locked into memory (for real-time and custom IO)',
s: 'Is a session leader',
l: 'Is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)',
'+': 'Is in the foreground process group'
}
}
}
Expand Down