You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,8 @@ That said, these are more guidelines rather than hard rules, though the project
48
48
-[#2062](https://github.com/ClementTsang/bottom/pull/2062): Rename `[network]` to `[network_graph]` in the config file; `[network]` remains valid as an alias.
49
49
-[#2062](https://github.com/ClementTsang/bottom/pull/2062): Move network and memory graph config file options from `[flags]` to be under `[network_graph]` and `[memory_graph]`.
50
50
-[#2063](https://github.com/ClementTsang/bottom/pull/2063): Move process config file options from `[flags]` to be under `[processes]`.
51
+
-[#2064](https://github.com/ClementTsang/bottom/pull/2064): Move CPU config file options from `[flags]` to be under `[cpu]`.
52
+
-[#2064](https://github.com/ClementTsang/bottom/pull/2064): Move memory config file options from `[flags]` to be under `[memory_graph]`.
If you want to change some of the default behaviour of the memory graph widget, you can configure things under the `[memory_graph]` (or `[memory]`) section.
4
4
5
-
If you want to change some of the default behaviour of the memory graph widget, you can configure some things in the config file.
|`legend_position`| String (one of ["none", "top-left", "top", "top-right", "left", "right", "bottom-left", "bottom", "bottom-right"]) | Where to place the legend for the memory widget. |
7
+
You can change where the legend for the graph is placed within the widget itself (or hidden with `"none"`). The default is `"top-right"`.
8
+
9
+
```toml
10
+
[memory_graph]
11
+
# One of ["none", "top-left", "top", "top-right", "left", "right", "bottom-left", "bottom", "bottom-right"]
12
+
legend_position = "top-left"
13
+
```
14
+
15
+
## Collect/show cache memory
16
+
17
+
On Linux, you can change whether the memory used by [cache/slabs](https://serverfault.com/a/1025189) is collected and
18
+
shown. By default, it is `false`.
19
+
20
+
```toml
21
+
[memory_graph]
22
+
cache_memory = true
23
+
```
24
+
25
+
## Subtract free-able ARC from memory
26
+
27
+
If ZFS is detected (note that the `zfs` feature must be enabled if built manually), you can enable `memory_graph.free_arc` to
28
+
not count [ARC](https://www.45drives.com/community/articles/zfs-caching/) memory in the RAM usage calculations. Disabled
0 commit comments