summaryrefslogtreecommitdiffstats
path: root/sample_configs
AgeCommit message (Collapse)Author
2024-04-10other: update a bunch of argument descriptions and some arg/config names (#1441)Clement Tsang
* other: update a bunch of argument descriptions and some arg/config names * update docs * changelog
2024-01-11docs: use consistent wording around command-line options (#1378)Clement Tsang
* docs: use consistent wording around command-line options * fix missing code blocks
2023-12-10feature: support default selection of average CPU graph (#1353)Clement Tsang
* feature: support default selection of average CPU graph * test
2023-11-19feature: Add gpu proc info (#1276)Justin Martin
* Add gpu util, power and procs. Consolidated gpu calls into `data_harvester`. Changed config flag from `enable_gpu_memory` to `enable_gpu`. Added GPU utilization to the cpu widget. Added GPU process memory usage and utilization percentage to the proc widget. Added key binds for gpu process toggling. Added GPU power usage to the battery widget. Added bounds check to battery widget header. Show battery widget header when `gpu_enable`. Added feature flag `legacy-functions` to `nvml-wrapper`. updated config file(s). updated help text. updated docs. * Code Review: Remove GPU util from cpu widget Remove GPU power from battery widget Use reference for gpu widgets_to_harvest Extract match arm to function for feature gate * Code Review: add gmem% toggle * Do not poll gpu temp when filtered * Code Review Two Changes: adjust doc wordings remove extra references remove extra widget harvest checks init proc gpu values use convert_temp_unit for gpu temp
2023-06-24docs: update time-related documentation (#1222)Clement Tsang
* docs: update time-related documentation * fix retention too
2023-06-22other: fix humantime-related documentation, add tests, support numbers + ↵Clement Tsang
strings in toml (#1220) * update documentation and support either numerical times or human times for time_delta and default_time_value * update docs * give more human times on error
2023-05-01docs: update default config file with processes section (#1120)Clement Tsang
2023-04-12feature: add buffer and cache memory (#1063)Twan Stok
* First implementation of cache memory data collection, mostly copied from RAM and swap implementations * First implementation of cache memory display, copied from RAM and swap implementations. placed cache as second in the list as it is more similar to the RAM than any other item in the list * expanded comment to explain method. * rustfmt * all cache-related code excluded on windows, in the process refactored src/data_conversion.rs convert_mem_label() to convert a single label instead of all at once * better factoring-out of cache memory logic to allow individual disabling * added --enable_cache_memory flag, disabled cache memory collection by default * renamed CCH to CHE not sure how i messed that up * changelog updated * Added command line flag documentation * updated config file documentation * specified that buffer and cache memory display does not work on windows * resolved merge conflicts * added documentation to cache memory data collection * capitalized Windows * implemented missing canvas styling logic * fixed misplaced no-windows flag * reduced colour collisions, as cache colour was the same as the first GPU colour * made FIFTH_COLOUR constant windows-only * Revert "made FIFTH_COLOUR constant windows-only" This reverts commit 72698f1dd7e2de7dbda843708ece6a3dba66f94f. * made FIFTH_COLOUR constant non-windows-only * minor fix for basic mode row count * Update src/app/data_harvester/memory/sysinfo.rs Co-authored-by: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> * Update src/canvas/widgets/mem_basic.rs Co-authored-by: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> * updated default_config.toml * formatting --------- Co-authored-by: ClementTsang <34804052+ClementTsang@users.noreply.github.com>
2022-12-07docs: update changelog + docs for default expansion feature (#928)Clement Tsang
2022-12-06feature: Adding default expanded option to commandline and config (#919)Chon Sou
* [#822] adding default expanded option to commandline and config * refactoring (#919) * nullifying default expanded when in basic mode (#919)
2022-11-21other: non-normalized process CPU% cleanup and docs (#910)Clement Tsang
* refactor: simplify non-normalized code * update docs * appease clippy * add comment * unnormalized * fix issues on non-Linux regarding typos/imports
2022-11-21feature: per-core process cpu usage percentage (#899)database64128
2022-11-13feature: add custom retention periods for data (#892)Clement Tsang
* feature: add custom retention periods for data * docs: update changelog * docs: update docs
2022-10-16enable gpu mem cli and update docs for arc/gpu mem (#836)Justin Martin
2021-07-25other: update default config file (#561)Clement Tsang
Update the default config file example in the repo as of 2021-07-25.
2021-01-01feature: Add network interface filtering (#381)Clement Tsang
Adds a new option in the config file to filter out network interfaces. Also add the option to filter by whole words. Interface follows that of the existing ones: ```toml [net_filter] is_list_ignored = false list = ["virbr0.*"] regex = true case_sensitive = false whole_word = false ```
2020-12-28feature: Add process_command to default to the process command (#379)Clement Tsang
Adds a `process_command` flag and config option to default to showing the full command in the process widget on startup.
2020-11-22other: update default config.tomlClementTsang
2020-05-04docs: update screenshotsClement Tsang
2020-04-22fix: Fixes typo in config generationClementTsang
2020-04-22docs: update default configClementTsang
2020-04-03(docs): Update README to be a bit nicerClementTsang
2020-03-03Add basic flag to sample config, also fixed incorrect flag name for configs.ClementTsang
2020-02-23Support average cpu colour separately from others. Redid documentation.ClementTsang
2020-02-20Moved some files around.ClementTsang