-
Notifications
You must be signed in to change notification settings - Fork 0
/
hosts.kdl
59 lines (59 loc) · 1.42 KB
/
hosts.kdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
layout {
pane_template name="lazysar" {
command "lazysar"
close_on_exit true
}
pane split_direction="horizontal" {
pane split_direction="vertical" {
lazysar {
args "client" "--preset" "cpu100"
name "CPU Usage mng"
}
lazysar {
args "client" "--preset" "cpu100" "--host" "node1"
name "CPU Usage node1"
}
lazysar {
args "client" "--preset" "cpu100" "--host" "node2"
name "CPU Usage node2"
}
}
pane split_direction="vertical" {
lazysar {
args "client" "--preset" "disk_bytes"
name "Disk I/O mng"
}
lazysar {
args "client" "--preset" "disk_bytes" "--host" "node1"
name "Disk I/O node1"
}
lazysar {
args "client" "--preset" "disk_bytes" "--host" "node2"
name "Disk I/O node2"
}
}
pane split_direction="vertical" {
lazysar {
args "client" "--preset" "network_bytes"
name "Network I/O mng"
}
lazysar {
args "client" "--preset" "network_bytes" "--host" "node1"
name "Network I/O node1"
}
lazysar {
args "client" "--preset" "network_bytes" "--host" "node2"
name "Network I/O node2"
}
}
lazysar {
args "cmd"
name "controller"
size 5
focus true
}
pane size=2 borderless=true {
plugin location="zellij:status-bar"
}
}
}