2018-03-02 21:20:46 +00:00
|
|
|
#ifndef HEADER_SolarisProcessList
|
|
|
|
#define HEADER_SolarisProcessList
|
|
|
|
/*
|
|
|
|
htop - SolarisProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2018-03-05 21:52:03 +00:00
|
|
|
(C) 2017,2018 Guy M. Broome
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2018-03-02 21:20:46 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2021-05-19 17:01:30 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
#include <kstat.h>
|
2021-05-19 17:01:30 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2018-03-02 21:20:46 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/sysconf.h>
|
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
#include <sys/swap.h>
|
|
|
|
|
2021-05-19 17:01:30 +00:00
|
|
|
#include "Hashtable.h"
|
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "UsersTable.h"
|
|
|
|
|
|
|
|
#include "solaris/SolarisProcess.h"
|
|
|
|
|
2021-04-29 18:13:36 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
|
|
|
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
#define ZONE_ERRMSGLEN 1024
|
2020-09-05 05:34:27 +00:00
|
|
|
extern char zone_errmsg[ZONE_ERRMSGLEN];
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
typedef struct CPUData_ {
|
|
|
|
double userPercent;
|
|
|
|
double nicePercent;
|
|
|
|
double systemPercent;
|
|
|
|
double irqPercent;
|
|
|
|
double idlePercent;
|
|
|
|
double systemAllPercent;
|
2020-12-24 13:01:23 +00:00
|
|
|
double frequency;
|
2018-03-02 21:20:46 +00:00
|
|
|
uint64_t luser;
|
|
|
|
uint64_t lkrnl;
|
|
|
|
uint64_t lintr;
|
|
|
|
uint64_t lidle;
|
2021-06-13 10:22:00 +00:00
|
|
|
bool online;
|
2018-03-02 21:20:46 +00:00
|
|
|
} CPUData;
|
|
|
|
|
|
|
|
typedef struct SolarisProcessList_ {
|
|
|
|
ProcessList super;
|
|
|
|
kstat_ctl_t* kd;
|
|
|
|
CPUData* cpus;
|
2019-07-08 02:43:39 +00:00
|
|
|
ZfsArcStats zfs;
|
2018-03-02 21:20:46 +00:00
|
|
|
} SolarisProcessList;
|
|
|
|
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* dynamicColumns, Hashtable* pidMatchList, uid_t userId);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2018-03-30 18:34:12 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2020-10-27 20:26:28 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2021-06-12 20:04:37 +00:00
|
|
|
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
#endif
|