+++ This bug was initially created as a clone of Bug #974071 +++ The values for UserModeTime and KernelModeTime in CIM class Linux_UnixProcess are incorrectly calculated. OSBase_UnixProcess.c: 231 if ( (fpstat=fopen(cmd,"r")) != NULL ) { 232 fscanf(fpstat,"%s %s %s %s %s %s %s %s %s %s %s %s %s %s " 233 "%lld %lld %s %s %s %s %s %ld", 234 &umtime,&kmtime,&ctime ); 235 fclose(fpstat); 236 (sptr)->kmtime = kmtime10; 237 (sptr)->umtime = umtime*10; The code is scanning fields 15 and 16 from /proc/[pid]/stat but it should use fields 14 and 15 on current Linux kernels as documented in /usr/src/linux/Documentation/filesystems/proc.txt. As a result, KernelModeTime is used for UserModeTime, and Child User Time for KernelModeTime. See https://sourceforge.net/p/sblim/bugs/2644/ for upstream bug fix.
Removed RFE from title since this is really a bugfix and not a feature request
On behalf of SAP LinuxLab I confirm that there will be the necessary commitment to test the new packages. Luca Miccini Red Hat partner TAM @ SAP LinuxLAB
This request was evaluated by Red Hat Product Management for inclusion in a Red Hat Enterprise Linux release. Product Management has requested further review of this request by Red Hat Engineering, for potential inclusion in a Red Hat Enterprise Linux release for currently deployed products. This request is not yet committed for inclusion in a release.
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. http://rhn.redhat.com/errata/RHBA-2014-1201.html