Skip to content

Commit 6155bb0

Browse files
pablotr9Jesús Ángel
authored andcommitted
3.9.3 Improve process table in inventory tab (#786)
1 parent 7515357 commit 6155bb0

File tree

4 files changed

+62
-9
lines changed

4 files changed

+62
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ All notable changes to the Wazuh app for Splunk project will be documented in th
88

99
- Support for Wazuh v3.9.3
1010

11+
### Changed
12+
13+
- Extend information for syscollector [#785](https://github.com/wazuh/wazuh-splunk/issues/785)
14+
1115
### Fixed
1216

1317
- Fixed agent bar that was not applying filters correctly when refreshing [#743](https://github.com/wazuh/wazuh-splunk/pull/743).

SplunkAppForWazuh/appserver/static/js/controllers/agents/inventory/inventory.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,13 @@
197197
</div>
198198
<div layout="row" ng-if="agent && syscollector" class="wz-margin-top-10 wz-margin-bottom-40-inv">
199199
<wazuh-table flex ng-if="agent && agent.os && agent.os.platform === 'windows'"
200-
path="'/syscollector/' + agent.id + '/processes'" row-sizes="[10,8,6]" extra-limit="100"
201-
keys="['name','cmd','priority','nlwp']">
202-
</wazuh-table>
203-
<wazuh-table flex ng-if="agent && agent.os && agent.os.platform !== 'windows'"
204-
path="'/syscollector/' + agent.id + '/processes'" row-sizes="[10,8,6]" extra-limit="100"
205-
keys="['name','euser','nice','state']">
206-
</wazuh-table>
200+
path="'/syscollector/' + agent.id + '/processes'" row-sizes="[10,8,6]" extra-limit="100"
201+
keys="['name','pid','ppid','cmd','vm_size','priority','nlwp']">
202+
</wazuh-table>
203+
<wazuh-table flex ng-if="agent && agent.os && agent.os.platform !== 'windows'"
204+
path="'/syscollector/' + agent.id + '/processes'" row-sizes="[10,8,6]" extra-limit="100"
205+
keys="['name','euser','egroup','pid','ppid','cmd','argvs','vm_size','size','session','nice','state']">
206+
</wazuh-table>
207207
</div>
208208
</md-card-content>
209209
<div layout="row" class="ruleset-csv-formater formatted-div-inventory">

SplunkAppForWazuh/appserver/static/js/services/key-equivalence/keyEquivalenceService.js

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,56 @@ define(['../module'], function(module) {
7878
expanded: 'Expanded',
7979
title: 'Title',
8080
result: 'Result',
81-
agents: 'Agents'
81+
agents: 'Agents',
82+
'os.arch': 'OS version architecture',
83+
'os.build': 'OS version build',
84+
'os.codename': 'OS code name',
85+
'os.major': 'OS version major',
86+
'os.minor': 'OS version minor',
87+
'os.platform': 'OS platform',
88+
'os.uname': 'OS uname',
89+
event: 'Event',
90+
euser: 'Effective user',
91+
egroup: 'Effective group',
92+
vm_size: 'VM size',
93+
processor: 'Processor',
94+
session: 'Session',
95+
tty: 'TTY',
96+
pid: 'PID',
97+
ppid: 'Parent PID',
98+
argvs: 'Argvs',
99+
nice: 'Priority',
100+
size: 'Size',
101+
inode: 'Inode',
102+
uid: 'User ID',
103+
gid: 'Group ID',
104+
mtime: 'Last modified',
105+
priority: 'Priority',
106+
cmd: 'CMD',
107+
nlwp: 'NLWP',
108+
references: 'References',
109+
remediation: 'Remediation',
110+
directory: 'Path(s)',
111+
rationale: 'Rationale',
112+
registry: 'Registry',
113+
location: 'Location',
114+
mtu: 'MTU',
115+
t: 'tracing stop',
116+
P: 'Parked',
117+
I: 'Idle',
118+
D: 'Uninterruptible sleep (usually IO)',
119+
R: 'Running or runnable (on run queue)',
120+
S: 'Interruptible sleep (waiting for an event to complete)',
121+
T: 'Stopped, either by a job control signal or because it is being traced.',
122+
W: 'paging (not valid since the 2.6.xx kernel)',
123+
X: 'Dead (should never be seen)',
124+
Z: 'Defunct ("zombie") process, terminated but not reaped by its parent.',
125+
'<': 'High-priority (not nice to other users)',
126+
N: 'Low-priority (nice to other users)',
127+
L: 'Has pages locked into memory (for real-time and custom IO)',
128+
s: 'Is a session leader',
129+
l: 'Is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)',
130+
'+': 'Is in the foreground process group'
82131
}
83132
}
84133
}

SplunkAppForWazuh/default/package.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[app]
22
version = 3.9.3
3-
revision = 33
3+
revision = 34
44

55
[wazuh]
66
version = 3.9.3

0 commit comments

Comments
 (0)