summaryrefslogtreecommitdiffstats
path: root/pcp/PCPDynamicMeter.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix code styleBenny Baumann2023-12-261-0/+4
|
* Rewrite Meter_humanUnit() to accept floating point valueExplorer092023-11-241-10/+10
| | | | | | | | | | | | | | | | | Since Meter_humanUnit() is often called with floating point values in Meter objects, rewrite the function to let it process `double` type natively, and save floating point to integer casts. The rewritten function: * Allows higher orders of magnitude including 'R' and 'Q', and addresses infinity. (The previous version has a maximum value of (2^64 - 1) representing 16 ZiB.) * Rounds values when they are in intervals (99.9, 100) and (9.99, 10), and displays them with correct precision (number of fraction digits). * Produces assertion error on negative and NaN values (undefined behavior). Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
* Merge branch 'style-header-consistency' of https://github.com/BenBE/htop ↵Nathan Scott2023-10-101-0/+1
|\ | | | | | | into BenBE-style-header-consistency
| * Make header sort order consistent againBenny Baumann2023-05-241-0/+1
| |
* | Rename PCPMetric files, structures and related internal functionsNathan Scott2023-08-301-6/+6
|/ | | | | Simplify names to just Metric in this case as it is not mirroring core htop naming (which is the norm for that naming convention).
* Add fallback for HOME environment variableChristian Göttsche2022-08-221-1/+9
| | | | | If the environment variable HOME is not set, try to get the home directory from the systems password database.
* Update license headers to explicitly say GPLv2+Daniel Lange2021-09-221-1/+1
|
* Add completion handling for dynamic meters and columnsNathan Scott2021-09-031-0/+16
| | | | | | | Be sure to free dynamic memory allocated for meters and columns strings, no-op on platforms other than pcp. Closes #774
* PCP: PCPMetric.[ch] MdouleSohaib2021-08-161-10/+17
| | | | | Split the PCP Metric API (functions `Metric_*`) into their own module. as @BenBE suggested.
* PCP: support for 'dynamic columns' added at runtimeSohaib Mohamed2021-08-131-31/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Indentation of string argumentsBenny Baumann2021-07-151-4/+4
|
* Whitespace around operatorsBenny Baumann2021-07-151-4/+4
|
* Code indentationBenny Baumann2021-07-151-13/+13
|
* Fix whitespace oddity in previous DynamicMeter updatesNathan Scott2021-07-141-1/+1
| | | | Thanks @BenBE for noticing.
* Improve the DynamicMeter_search API to make 'key' optionalNathan Scott2021-07-141-2/+2
| | | | Thanks to @BenBE for the suggestion.
* Additional pointer checks in dynamic meter code for CoverityNathan Scott2021-07-141-7/+9
|
* Ensure PCP dynamic metric configuration definition uniquenessNathan Scott2021-07-141-19/+29
| | | | | | | | | | | | | | It can happen that pcp-htop is presented multiple definitions of the same dynamic meter, e.g. if /etc/pcp/htop/meters has a definition matching one in ~/.config/htop/meters - instead of exiting with a duplicate metric error provide more meaningful diagnostics (on close) and also just skip over such entries. System files override home directories which overrides those found below the current working directory. Also fix the derived metric error diagnostic; because this is using CRT_fatalError, which is like perror(3), we must give a meaningful prefix (like program name) at the string end.
* Remove unnecessary include files from PCPDynamicMeter.cNathan Scott2021-07-091-8/+5
| | | | | Also resolve a few unintended style guide transgressions in the PCP platform code.
* Pretty-print values in the PCP DynamicMeter codeNathan Scott2021-07-081-40/+97
| | | | | | | | | | | | | | | | | Several improvements to the way values are displayed in the PCP platform DynamicMeter implementation: - handle the initial 'caption' setting as with regular meters, this required a new meter callback because we no longer have just a single meter caption for the DynamicMeter case - if no label is provided for a metric in a configuration file use the short form metric name as a fallback - honour the suffix setting in the configuration file - convert metric values to the canonical units for htop (kbyte and seconds), and use Meter_humanUnit when it makes sense to do so. Also improves the handling of fatal string error messages in a couple of places, thanks to BenBE for the review feedback.
* PCP: use palette meter text colour for dynamic meter labelsSohaib Mohamed2021-07-071-1/+1
|
* Add a new DynamicMeter class for runtime Meter extensionNathan Scott2021-07-071-0/+368
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.

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