summaryrefslogtreecommitdiffstats
path: root/freebsd/FreeBSDProcessList.h
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to explicitly say GPLv2+Daniel Lange2021-09-221-1/+1
|
* PCP: support for 'dynamic columns' added at runtimeSohaib Mohamed2021-08-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Add ProcessList_isCPUonlineChristian Göttsche2021-07-181-0/+2
|
* Add a new DynamicMeter class for runtime Meter extensionNathan Scott2021-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is based on exploratory work by Sohaib Mohamed. The end goal is two-fold - to support addition of Meters we build via configuration files for both the PCP platform and for scripts ( https://github.com/htop-dev/htop/issues/526 ) Here, we focus on generic code and the PCP support. A new class DynamicMeter is introduced - it uses the special case 'param' field handling that previously was used only by the CPUMeter, such that every runtime-configured Meter is given a unique identifier. Unlike with the CPUMeter this is used internally only. When reading/writing to htoprc instead of CPU(N) - where N is an integer param (CPU number) - we use the string name for each meter. For example, if we have a configuration for a DynamicMeter for some Redis metrics, we might read and write "Dynamic(redis)". This identifier is subsequently matched (back) up to the configuration file so we're able to re-create arbitrary user configurations. The PCP platform configuration file format is fairly simple. We expand configs from several directories, including the users homedir alongside htoprc (below htop/meters/) and also /etc/pcp/htop/meters. The format will be described via a new pcp-htop(5) man page, but its basically ini-style and each Meter has one or more metric expressions associated, as well as specifications for labels, color and so on via a dot separated notation for individual metrics within the Meter. A few initial sample configuration files are provided below ./pcp/meters that give the general idea. The PCP "derived" metric specification - see pmRegisterDerived(3) - is used as the syntax for specifying metrics in PCP DynamicMeters.
* Rework TTY columnChristian Göttsche2021-04-141-2/+0
| | | | | | | | | | * Rename internal identifier from TTY_NR to just TTY * Unify column header on platforms * Use devname(3) on BSD derivate to show the actual terminal, simplifies current FreeBSD implementation. * Use 'unsigned long int' as id type, to fit dev_t on Linux. Only on Solaris the terminal path is not yet resolved.
* FreeBSD: add support for CPU frequency and temperatureChristian Göttsche2021-02-051-0/+3
|
* FreeBSD: drop unused jail_errmsg variableChristian Göttsche2021-01-301-3/+0
|
* FreeBSD: drop unused ProcessList fieldsChristian Göttsche2021-01-301-3/+0
|
* IWYU update (FreeBSD)Christian Goettsche2020-11-191-6/+2
|
* Spacing around operatorsBenny Baumann2020-11-021-4/+4
|
* FreeBSD: update ProcessListChristian Göttsche2020-10-291-6/+2
|
* FreeBSD: rework tty process columnChristian Goettsche2020-10-291-0/+2
|
* Unify function argument namesChristian Göttsche2020-10-281-1/+1
| | | | | Name first argument of ProcessList_goThroughEntries consistently super Name first argument of ProcessList_new consistently userTable
* Drop tabs in source indentionsChristian Göttsche2020-10-201-1/+1
|
* Continue to update generic data in paused modeChristian Göttsche2020-10-191-1/+1
| | | | | | | | | Generic data, as CPU and memory usage, are used by Meters. In paused mode they would stop receiving updates and especially Graph Meters would stop showing continuous data. Improves: #214 Closes: #253
* Make all required includes explicitBenny Baumann2020-10-181-2/+8
| | | | Information as seen by IWYU 0.12 + clang 9 on Linux
* Update License consistently to GPLv2 as per COPYING fileDaniel Lange2020-10-051-1/+1
|
* Switch variable/field naming from WhiteList to MatchListNathan Scott2020-09-091-1/+1
|
* Further, minor cleanups to headers post-MakeHeadersNathan Scott2020-09-081-4/+0
| | | | | Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
* Remove duplicate jail_errmsg declaration.Zev Weiss2020-09-031-3/+0
| | | | Fixes: 11ecc65ebb1527e9a83f67bb5ac0dec455cb03e6
* Remove superfluous 'extern's from function declarations.Zev Weiss2020-09-031-5/+5
| | | | | | | | Applied via: $ find * -name '*.h' -exec sed -i -r 's/^extern (.+\()/\1/;' {} + Suggested-by: Bert Wesarg <bert.wesarg@googlemail.com>
* Axe automated header generation.Zev Weiss2020-09-031-2/+0
| | | | | | | | | | | | | | Reasoning: - implementation was unsound -- broke down when I added a fairly basic macro definition expanding to a struct initializer in a *.c file. - made it way too easy (e.g. via otherwise totally innocuous git commands) to end up with timestamps such that it always ran MakeHeader.py but never used its output, leading to overbuild noise when running what should be a null 'make'. - but mostly: it's just an awkward way of dealing with C code.
* Unbreak with -fno-common on FreeBSDTobias Kortkamp2020-09-031-6/+8
| | | | | | | | | | | | GCC10 and Clang11 now default to -fno-common. ld: error: duplicate symbol: jail_errmsg >>> defined at Platform.c >>> freebsd/Platform.o:(jail_errmsg) >>> defined at FreeBSDProcessList.c >>> freebsd/FreeBSDProcessList.o:(.bss+0x90) Signed-off-by: Tobias Kortkamp <t@tobik.me>
* Refactor common OpenZFS sysctl accessRoss Williams2019-07-071-10/+4
| | | | | Darwin and FreeBSD export zfs kstats through the same APIs, so moving functions into a common file.
* Support ZFS ARC stats on FreeBSDRoss Williams2019-07-071-0/+6
| | | | | | | | | | | | | | | | | New meter displays same ARC stats as FreeBSD top(1). Can be extended to other platforms that support ZFS. Pulling kstat.zfs.misc.arcstats.c_max as the meter total, so the meter has a meaningful value to work up to. The Text meter displays, first, the maximum ARC size (Meter.total), then second, the total ARC used, using the difference between Meter.maxItems and Meter.curItems to "hide" the used value from the Bar and Graph drawing functions by using an index in Meter.values[] that is beyond curItems - 1, but less than maxItems - 1.
* Avoid global, as done by @gaod in #387.Hisham Muhammad2016-03-071-1/+0
|
* Add generated header.Hisham2016-01-311-2/+26
|
* Regenerate platform-dependent headers.Hisham Muhammad2015-10-191-0/+8
| | | | Closes #293.
* Major advances in FreeBSD port.Hisham Muhammad2015-03-161-1/+3
|
* Get FreeBSD tree to compile again with latest changes.Hisham Muhammad2015-03-161-1/+9
|
* Reading swap data!Hisham Muhammad2014-11-271-1/+2
|
* Reading first bits of data!Hisham Muhammad2014-11-271-1/+9
|
* Beginnings of FreeBSD port!Hisham Muhammad2014-11-271-0/+18

© 2014-2024 Faster IT GmbH | imprint | privacy policy