We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6642be5 commit 6417d3fCopy full SHA for 6417d3f
hack/collector-longhorn
@@ -11,6 +11,12 @@ function collect_proc_mounts(){
11
cp ${HOST_PATH}/proc/mounts ./proc_mounts
12
}
13
14
+function collect_multipath_config(){
15
+ if [ -f ${HOST_PATH}/etc/multipath.conf ]; then
16
+ cp ${HOST_PATH}/etc/multipath.conf .
17
+ fi
18
+}
19
+
20
function collect_sysinfo(){
21
cd ${BUNDLE_DIR}
22
mkdir -p hostinfos
@@ -24,6 +30,7 @@ function collect_sysinfo(){
24
30
cat ${HOST_PATH}/boot/config-$(uname -r) > kernel_config
25
31
26
32
collect_proc_mounts
33
+ collect_multipath_config
27
34
28
35
29
36
function collect_dmesg(){
0 commit comments