processLoad() fix pid (linux)
This commit is contained in:
parent
80953aa58d
commit
d38ff54ace
@ -81,6 +81,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
|
|||||||
|
|
||||||
| Version | Date | Comment |
|
| Version | Date | Comment |
|
||||||
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
|
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
|
||||||
|
| 5.13.1 | 2022-11-17 | `processLoag()` fix main pid (linux) |
|
||||||
| 5.13.0 | 2022-11-17 | `networkConnections()` addedd process name (mac OS) |
|
| 5.13.0 | 2022-11-17 | `networkConnections()` addedd process name (mac OS) |
|
||||||
| 5.12.15 | 2022-11-16 | `networkConnections()` adapted parsing to reflect also UDP (mac OS) |
|
| 5.12.15 | 2022-11-16 | `networkConnections()` adapted parsing to reflect also UDP (mac OS) |
|
||||||
| 5.12.14 | 2022-11-11 | restored `powershell` compatibility for version 7.3 (windows) |
|
| 5.12.14 | 2022-11-11 | restored `powershell` compatibility for version 7.3 (windows) |
|
||||||
|
|||||||
@ -57,6 +57,11 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">5.13.1</th>
|
||||||
|
<td>2022-11-17</td>
|
||||||
|
<td><span class="code">processLoad()</span> fix main pid (linux)</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">5.13.0</th>
|
<th scope="row">5.13.0</th>
|
||||||
<td>2022-11-17</td>
|
<td>2022-11-17</td>
|
||||||
|
|||||||
@ -170,7 +170,7 @@
|
|||||||
<img class="logo" src="assets/logo.png" alt="logo">
|
<img class="logo" src="assets/logo.png" alt="logo">
|
||||||
<div class="title">systeminformation</div>
|
<div class="title">systeminformation</div>
|
||||||
<div class="subtitle"><span id="typed"></span> </div>
|
<div class="subtitle"><span id="typed"></span> </div>
|
||||||
<div class="version">New Version: <span id="version">5.13.0</span></div>
|
<div class="version">New Version: <span id="version">5.13.1</span></div>
|
||||||
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
|
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="down">
|
<div class="down">
|
||||||
|
|||||||
@ -1169,7 +1169,7 @@ function processLoad(proc, callback) {
|
|||||||
if (listPos < 0) {
|
if (listPos < 0) {
|
||||||
result.push({
|
result.push({
|
||||||
proc: name,
|
proc: name,
|
||||||
pid: item.ppid < 10 ? item.pid : null,
|
pid: item.pid,
|
||||||
pids: [item.pid],
|
pids: [item.pid],
|
||||||
cpu: item.cpu,
|
cpu: item.cpu,
|
||||||
mem: item.mem
|
mem: item.mem
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user