blob: f98fc44fb1bf9b2f4e3c078fc87df42361f21433 [file] [log] [blame]
Peter D Phan72ce6b82021-06-03 06:18:26 -05001---
2# This yaml formatted file contains defaults items to collect FFDC for the targeted system
3# COMMANDS - List of commands to be run on the corresponding targeted system (inband)
4# to generate and/or collect data
5# FILES - List of files; with complete path; on the corresponding targeted system
6# to be copied to external destination
7# PROTOCOL - Protocol used to communicate with targeted system; ssh, Rest, redfish, etc
8#
9# Note: Items in COMMANDS and FILES are not necessarily one-to-one correspondence.
10# For example, a file could have been created by an internal process,
11# and is listed in FILES to be collected.
Peter D Phan04aca3b2021-06-21 10:37:18 -050012#
Peter D Phan2b8052d2021-06-22 10:55:41 -050013
Peter D Phan72ce6b82021-06-03 06:18:26 -050014# Commands and Files to collect for a given OpenBMC system.
15OPENBMC:
George Keishing6ea92b02021-07-01 11:20:50 -050016 # Commands and File to take snapshot of linux based system.
17 # Filename is <OS>_general.txt, where <OS> is in [OPENBMC, RHEL, UBUNTU]
18 GENERAL:
19 COMMANDS:
George Keishing4dd1aa32021-07-07 01:11:07 -050020 - 'rm -rf /tmp/OPENBMC_general.txt'
Peter D Phand1fccd32021-07-21 06:45:54 -050021 - 'echo "++++++++++ cat /etc/os-release ++++++++++" >> /tmp/OPENBMC_general.txt'
22 - 'cat /etc/os-release >> /tmp/OPENBMC_general.txt'
23 - 'echo -e "\n++++++++++ cat /etc/timestamp ++++++++++" >> /tmp/OPENBMC_general.txt'
24 - 'cat /etc/timestamp >> /tmp/OPENBMC_general.txt'
25 - 'echo -e "\n++++++++++ uname -a ++++++++++" >> /tmp/OPENBMC_general.txt'
George Keishing4dd1aa32021-07-07 01:11:07 -050026 - 'uname -a >> /tmp/OPENBMC_general.txt'
Peter D Phand1fccd32021-07-21 06:45:54 -050027 - 'echo -e "\n++++++++++ cat /etc/timestamp ++++++++++" >> /tmp/OPENBMC_general.txt'
28 - 'cat /etc/timestamp >> /tmp/OPENBMC_general.txt'
29 - 'echo -e "\n++++++++++ uptime;cat /proc/uptime ++++++++++" >> /tmp/OPENBMC_general.txt'
30 - 'uptime >> /tmp/OPENBMC_general.txt'
31 - 'cat /proc/uptime >> /tmp/OPENBMC_general.txt'
32 - 'echo -e "\n++++++++++ df -hT ++++++++++" >> /tmp/OPENBMC_general.txt'
33 - 'df -hT >> /tmp/OPENBMC_general.txt'
34 - 'echo -e "\n++++++++++ date;/sbin/hwclock --show ++++++++++" >> /tmp/OPENBMC_general.txt'
35 - 'date >> /tmp/OPENBMC_general.txt'
36 - '/sbin/hwclock --show >> /tmp/OPENBMC_general.txt'
37 - '/usr/bin/timedatectl >> /tmp/OPENBMC_general.txt'
38 - 'echo -e "\n++++++++++ /usr/bin/obmcutil state ++++++++++" >> /tmp/OPENBMC_general.txt'
39 - '/usr/bin/obmcutil state >> /tmp/OPENBMC_general.txt'
George Keishing0c0bdd42021-07-23 13:36:06 -050040 - 'echo -e "\n++++++++++ bmcweb session data ++++++++++" >> /tmp/OPENBMC_general.txt'
41 - 'for f in `find /var/lib/bmcweb/ -name "*.json"`; do (echo $f; cat $f) done >> /tmp/OPENBMC_general.txt'
George Keishing6ea92b02021-07-01 11:20:50 -050042 FILES:
George Keishing4dd1aa32021-07-07 01:11:07 -050043 - '/tmp/OPENBMC_general.txt'
George Keishing6ea92b02021-07-01 11:20:50 -050044 PROTOCOL:
45 - 'SSH'
Peter D Phan72ce6b82021-06-03 06:18:26 -050046
George Keishing6ea92b02021-07-01 11:20:50 -050047 OPENBMC_LOGS:
48 COMMANDS:
Peter D Phand1fccd32021-07-21 06:45:54 -050049 - 'cat /sys/class/watchdog/watchdog1/bootstatus >/tmp/BMC_flash_side.txt'
50 - 'grep -r . /sys/class/hwmon/* >/tmp/BMC_hwmon.txt'
51 - 'top -n 1 -b >/tmp/BMC_proc_list.txt'
52 - 'ls -Al /proc/*/fd/ >/tmp/BMC_proc_fd_active_list.txt'
53 - 'journalctl --no-pager >/tmp/BMC_journalctl_nopager.txt'
54 - 'journalctl -o json-pretty >/tmp/BMC_journalctl_pretty.json'
55 - 'dmesg >/tmp/BMC_dmesg.txt'
56 - 'cat /proc/cpuinfo >/tmp/BMC_procinfo.txt'
57 - 'cat /proc/meminfo >/tmp/BMC_meminfo.txt'
58 - 'systemctl status --all >/tmp/BMC_systemd.txt'
59 - 'systemctl list-units --failed >/tmp/BMC_failed_service.txt'
60 - 'systemctl list-jobs >/tmp/BMC_list_service.txt'
61 - 'cat /var/log/obmc-console.log >/tmp/BMC_obmc_console.txt'
62 - 'cat /var/log/obmc-console1.log >/tmp/BMC_obmc_console1.txt'
63 - 'peltool -l >/tmp/PEL_logs_list.json'
64 - 'peltool -a >/tmp/PEL_logs_display.json'
George Keishingfd246e22021-08-10 08:35:02 -050065 - 'killall -s SIGUSR1 pldmd; sleep 5'
George Keishing6ea92b02021-07-01 11:20:50 -050066 FILES:
67 - '/tmp/BMC_flash_side.txt'
68 - '/tmp/BMC_hwmon.txt'
69 - '/tmp/BMC_proc_list.txt'
70 - '/tmp/BMC_proc_fd_active_list.txt'
71 - '/tmp/BMC_journalctl_nopager.txt'
72 - '/tmp/BMC_journalctl_pretty.json'
73 - '/tmp/BMC_dmesg.txt'
74 - '/tmp/BMC_procinfo.txt'
75 - '/tmp/BMC_meminfo.txt'
76 - '/tmp/BMC_systemd.txt'
77 - '/tmp/BMC_failed_service.txt'
78 - '/tmp/BMC_list_service.txt'
79 - '/tmp/BMC_obmc_console.txt'
80 - '/tmp/BMC_obmc_console1.txt'
81 - '/tmp/PEL_logs_list.json'
82 - '/tmp/PEL_logs_display.json'
George Keishingfd246e22021-08-10 08:35:02 -050083 - '/tmp/pldm_flight_recorder'
George Keishing6ea92b02021-07-01 11:20:50 -050084 PROTOCOL:
85 - 'SSH'
Peter D Phan56429a62021-06-23 08:38:29 -050086
Peter D Phanbabf2962021-07-07 11:24:40 -050087 # DUMP_LOGS: This section provides option to 'SCP if file exist'.
Peter D Phane86d9a52021-07-15 10:42:25 -050088 # COMMANDS: filename is preceded by ls -AX '.
Peter D Phanbabf2962021-07-07 11:24:40 -050089 # FILES: is not needed and is ignored if exists.
George Keishing6ea92b02021-07-01 11:20:50 -050090 DUMP_LOGS:
91 COMMANDS:
92 - 'ls -AX /var/lib/systemd/coredump/core.*'
93 - 'ls -AX /var/lib/phosphor-debug-collector/dumps/*/*.tar.xz'
94 - 'ls -AX /var/lib/phosphor-debug-collector/hostbootdump/*/*.tar.gz'
George Keishing6ea92b02021-07-01 11:20:50 -050095 PROTOCOL:
Peter D Phanbabf2962021-07-07 11:24:40 -050096 - 'SCP'
Peter D Phan0c669772021-06-24 13:52:42 -050097
George Keishing6ea92b02021-07-01 11:20:50 -050098 # URLs and Files for OPENBMC redfish
99 # URLs and Files are one-to-one corresponding.
100 # File contains the data returned from 'redfishtool GET URL'
101 REDFISH_LOGS:
George Keishing506b0582021-07-27 09:31:22 -0500102 COMMANDS:
George Keishing506b0582021-07-27 09:31:22 -0500103 - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always raw GET /redfish/v1/AccountService/Accounts
104 - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always raw GET /redfish/v1/Managers/bmc/LogServices/Dump/Entries
105 - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always raw GET /redfish/v1/Systems/system/LogServices/Dump/Entries
106 - redfishtool -u ${username} -p ${password} -r ${hostname} -S Always raw GET /redfish/v1/Systems/system/LogServices/EventLog/Entries
George Keishing91308ea2021-08-10 14:43:15 -0500107 - plugin:
108 - plugin_name: plugin.redfish.enumerate_request
109 - plugin_args:
110 - ${hostname}
111 - ${username}
112 - ${password}
113 - /redfish/v1/
114 - json
George Keishing6ea92b02021-07-01 11:20:50 -0500115 FILES:
George Keishinga5079d72021-07-06 00:26:10 -0500116 - 'REDFISH_bmc_user_accounts.json'
117 - 'REDFISH_bmc_dump_entries.json'
118 - 'REDFISH_system_dumps_entries.json'
119 - 'REDFISH_event_log_entries.json'
George Keishing91308ea2021-08-10 14:43:15 -0500120 - 'REDFISH_enumerate_v1.json'
George Keishing6ea92b02021-07-01 11:20:50 -0500121 PROTOCOL:
122 - 'REDFISH'
123
124 # Commands and Files to collect for via out of band IPMI.
125 IPMI_LOGS:
126 COMMANDS:
George Keishing484f8242021-07-27 01:42:02 -0500127 - ipmitool -I lanplus -C 17 -U ${username} -P ${password} -H ${hostname} lan print
128 - ipmitool -I lanplus -C 17 -U ${username} -P ${password} -H ${hostname} fru list
129 - ipmitool -I lanplus -C 17 -U ${username} -P ${password} -H ${hostname} user list
George Keishing6ea92b02021-07-01 11:20:50 -0500130 FILES:
131 - 'IPMI_LAN_print.txt'
132 - 'IPMI_FRU_list.txt'
133 - 'IPMI_USER_list.txt'
134 PROTOCOL:
135 - 'IPMI'
George Keishingeafba182021-06-29 13:44:58 -0500136
Peter D Phan72ce6b82021-06-03 06:18:26 -0500137# Commands and Files to collect for all Linux distributions
138LINUX:
George Keishing6ea92b02021-07-01 11:20:50 -0500139 LINUX_LOGS:
140 COMMANDS:
Peter D Phand1fccd32021-07-21 06:45:54 -0500141 - 'cat /sys/firmware/opal/msglog >/tmp/OS_msglog.txt'
142 - 'ppc64_cpu --frequency >/tmp/OS_cpufrequency.txt'
143 - 'dmesg >/tmp/OS_dmesg.txt'
144 - 'cat /var/log/opal-prd* >/tmp/OS_opal_prd.txt'
145 - 'cat /var/log/boot.log >/tmp/OS_boot.txt'
146 - 'cat /proc/cpuinfo >/tmp/OS_procinfo.txt'
147 - 'cat /proc/meminfo >/tmp/OS_meminfo.txt'
148 - 'netstat -a >/tmp/OS_netstat.txt'
149 - 'lspci >/tmp/OS_lspci.txt'
150 - 'lscpu >/tmp/OS_lscpu.txt'
151 - 'lscfg >/tmp/OS_lscfg.txt'
152 - 'journalctl --no-pager -b > /tmp/OS_journalctl_nopager.txt '
George Keishing6ea92b02021-07-01 11:20:50 -0500153 FILES:
154 - '/tmp/OS_msglog.txt'
155 - '/tmp/OS_cpufrequency.txt'
156 - '/tmp/OS_dmesg.txt'
157 - '/tmp/OS_opal_prd.txt'
158 - '/tmp/OS_boot.txt'
159 - '/tmp/OS_procinfo.txt'
160 - '/tmp/OS_meminfo.txt'
161 - '/tmp/OS_netstat.txt'
162 - '/tmp/OS_lspci.txt'
163 - '/tmp/OS_lscpu.txt'
164 - '/tmp/OS_lscfg.txt'
165 - '/tmp/OS_journalctl_nopager.txt'
166 PROTOCOL:
167 - 'SSH'
Peter D Phan72ce6b82021-06-03 06:18:26 -0500168
169# Commands and Files to collect for Ubuntu Linux only
Peter D Phan04aca3b2021-06-21 10:37:18 -0500170UBUNTU:
George Keishing0c0bdd42021-07-23 13:36:06 -0500171 GENERAL:
George Keishing6ea92b02021-07-01 11:20:50 -0500172 COMMANDS:
George Keishing0c0bdd42021-07-23 13:36:06 -0500173 - 'rm -rf /tmp/UBUNTU_general.txt'
174 - 'echo "++++++++++ UBUNTU Rleasae ++++++++++" > /tmp/UBUNTU_general.txt'
175 - 'cat /etc/os-release >> /tmp/UBUNTU_general.txt'
176 - 'echo "\n++++++++++ Time stamp ++++++++++" >> /tmp/UBUNTU_general.txt'
177 - 'date >> /tmp/UBUNTU_general.txt'
178 - 'echo "\n++++++++++ uname -a ++++++++++" >> /tmp/UBUNTU_general.txt'
179 - 'uname -a >> /tmp/UBUNTU_general.txt'
180 - 'echo "\n++++++++++ uptime ++++++++++" >> /tmp/UBUNTU_general.txt'
181 - 'uptime >> /tmp/UBUNTU_general.txt'
George Keishing6ea92b02021-07-01 11:20:50 -0500182 FILES:
George Keishing0c0bdd42021-07-23 13:36:06 -0500183 - '/tmp/UBUNTU_general.txt'
George Keishing86399c92021-07-01 13:01:49 -0500184 PROTOCOL:
185 - 'SSH'
George Keishing0c0bdd42021-07-23 13:36:06 -0500186 UBUNTU_LOGS:
187 COMMANDS:
188 - '{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt'
189 - 'tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt'
190 - 'rm -rf /tmp/sosreport*FFDC*'
191 - {'sosreport --batch --tmp-dir /tmp --label FFDC >/tmp/OS_sosreport.txt': 1200}
192 - 'tar -zcvf /tmp/crash.tar.gz /var/crash'
193 FILES:
194 - '/tmp/OS_info.txt'
195 - '/tmp/OS_syslog.txt'
196 - '/tmp/OS_sosreport.txt'
197 - '/tmp/sosreport*.tar.xz'
198 - '/tmp/crash.tar.gz'
199 PROTOCOL:
200 - 'SSH'
201 DUMP_LOGS:
202 COMMANDS:
203 - 'ls -AX /tmp/htx/htxerr'
204 - 'ls -AX /tmp/htx/htxmsg'
205 PROTOCOL:
206 - 'SCP'
George Keishing86399c92021-07-01 13:01:49 -0500207
Peter D Phan72ce6b82021-06-03 06:18:26 -0500208# Commands and Files to collect for RHE Linux only
Peter D Phan04aca3b2021-06-21 10:37:18 -0500209RHEL:
George Keishing0c0bdd42021-07-23 13:36:06 -0500210 GENERAL:
211 COMMANDS:
212 - 'rm -rf /tmp/RHEL_general.txt'
213 - 'echo "++++++++++ RHEL Rleasae ++++++++++" > /tmp/RHEL_general.txt'
214 - 'cat /etc/os-release >> /tmp/RHEL_general.txt'
215 - 'echo -e "\n++++++++++ Time stamp ++++++++++" >> /tmp/RHEL_general.txt'
216 - 'date >> /tmp/RHEL_general.txt'
217 - 'echo -e "\n++++++++++ uname -a ++++++++++" >> /tmp/RHEL_general.txt'
218 - 'uname -a >> /tmp/RHEL_general.txt'
219 - 'echo -e "\n++++++++++ uptime ++++++++++" >> /tmp/RHEL_general.txt'
220 - 'uptime >> /tmp/RHEL_general.txt'
221 FILES:
222 - '/tmp/RHEL_general.txt'
223 PROTOCOL:
224 - 'SSH'
George Keishing6ea92b02021-07-01 11:20:50 -0500225 RHEL_LOGS:
226 COMMANDS:
Peter D Phand1fccd32021-07-21 06:45:54 -0500227 - '{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt'
228 - 'tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt'
George Keishing6ea92b02021-07-01 11:20:50 -0500229 - 'rm -rf /tmp/sosreport*FFDC*'
Peter D Phand1fccd32021-07-21 06:45:54 -0500230 - {'sosreport --batch --tmp-dir /tmp --label FFDC >/tmp/OS_sosreport.txt': 1200}
George Keishing0c0bdd42021-07-23 13:36:06 -0500231 - 'tar -zcvf /tmp/crash.tar.gz /var/crash'
George Keishing6ea92b02021-07-01 11:20:50 -0500232 FILES:
George Keishing6ea92b02021-07-01 11:20:50 -0500233 - '/tmp/OS_info.txt'
George Keishing5b43c222021-07-09 01:10:00 -0500234 - '/tmp/OS_syslog.txt'
George Keishing6ea92b02021-07-01 11:20:50 -0500235 - '/tmp/OS_sosreport.txt'
George Keishing86399c92021-07-01 13:01:49 -0500236 - '/tmp/sosreport*.tar.xz'
George Keishing0c0bdd42021-07-23 13:36:06 -0500237 - '/tmp/crash.tar.gz'
George Keishing86399c92021-07-01 13:01:49 -0500238 PROTOCOL:
239 - 'SSH'
George Keishing0c0bdd42021-07-23 13:36:06 -0500240 DUMP_LOGS:
241 COMMANDS:
242 - 'ls -AX /tmp/htx/htxerr'
243 - 'ls -AX /tmp/htx/htxmsg'
244 PROTOCOL:
245 - 'SCP'
George Keishing86399c92021-07-01 13:01:49 -0500246
George Keishing5b43c222021-07-09 01:10:00 -0500247# Commands and Files to collect for SLES Linux only
248SLES:
George Keishing0c0bdd42021-07-23 13:36:06 -0500249 GENERAL:
250 COMMANDS:
251 - 'rm -rf /tmp/SLES_general.txt'
252 - 'echo "++++++++++ SLES Rleasae ++++++++++" > /tmp/SLES_general.txt'
253 - 'cat /etc/os-release >> /tmp/SLES_general.txt'
254 - 'echo "\n++++++++++ Time stamp ++++++++++" >> /tmp/SLES_general.txt'
255 - 'date >> /tmp/SLES_general.txt'
256 - 'echo "\n++++++++++ uname -a ++++++++++" >> /tmp/SLES_general.txt'
257 - 'uname -a >> /tmp/SLES_general.txt'
258 - 'echo "\n++++++++++ uptime ++++++++++" >> /tmp/SLES_general.txt'
259 - 'uptime >> /tmp/SLES_general.txt'
260 FILES:
261 - '/tmp/SLES_general.txt'
262 PROTOCOL:
263 - 'SSH'
George Keishing5b43c222021-07-09 01:10:00 -0500264 SLES_LOGS:
265 COMMANDS:
Peter D Phand1fccd32021-07-21 06:45:54 -0500266 - '{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt'
267 - 'tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt'
George Keishing5b43c222021-07-09 01:10:00 -0500268 - 'rm -rf /tmp/scc*.txz.md5'
Peter D Phand1fccd32021-07-21 06:45:54 -0500269 - {'supportconfig >/tmp/OS_supportconfig.txt': 1200}
George Keishing5b43c222021-07-09 01:10:00 -0500270 - 'cp /var/log/scc*.txz.md5 /tmp/'
George Keishing0c0bdd42021-07-23 13:36:06 -0500271 - 'tar -zcvf /tmp/crash.tar.gz /var/crash'
George Keishing5b43c222021-07-09 01:10:00 -0500272 FILES:
273 - '/tmp/OS_info.txt'
274 - '/tmp/OS_syslog.txt'
275 - '/tmp/OS_supportconfig.txt'
George Keishing5b43c222021-07-09 01:10:00 -0500276 - '/tmp/scc*.txz.md5'
George Keishing0c0bdd42021-07-23 13:36:06 -0500277 - '/tmp/crash.tar.gz'
George Keishing5b43c222021-07-09 01:10:00 -0500278 PROTOCOL:
279 - 'SSH'
George Keishing0c0bdd42021-07-23 13:36:06 -0500280 DUMP_LOGS:
281 COMMANDS:
282 - 'ls -AX /tmp/htx/htxerr'
283 - 'ls -AX /tmp/htx/htxmsg'
284 PROTOCOL:
285 - 'SCP'
George Keishing5b43c222021-07-09 01:10:00 -0500286
George Keishinga3f3f592021-06-17 11:28:04 -0500287# Commands and Files to collect for AIX only
Peter D Phan04aca3b2021-06-21 10:37:18 -0500288AIX:
George Keishing0c0bdd42021-07-23 13:36:06 -0500289 GENERAL:
290 COMMANDS:
291 - 'rm -rf /tmp/AIX_general.txt'
292 - 'echo "++++++++++ AIX Release ++++++++++" > /tmp/AIX_general.txt'
293 - 'cat /proc/version | tail -1 >> /tmp/AIX_general.txt'
294 - 'echo "\n++++++++++ Time stamp ++++++++++" >> /tmp/AIX_general.txt'
295 - 'date >> /tmp/AIX_general.txt'
296 - 'echo "\n++++++++++ uname -a ++++++++++" >> /tmp/AIX_general.txt'
297 - 'uname -a >> /tmp/AIX_general.txt'
298 - 'echo "\n++++++++++ uptime ++++++++++" >> /tmp/AIX_general.txt'
299 - 'uptime >> /tmp/AIX_general.txt'
300 - 'echo "\n++++++++++ System Info ++++++++++" >> /tmp/AIX_general.txt'
301 - 'prtconf | head -15 >> /tmp/AIX_general.txt'
302 FILES:
303 - '/tmp/AIX_general.txt'
304 PROTOCOL:
305 - 'SSH'
George Keishing6ea92b02021-07-01 11:20:50 -0500306 AIX_LOGS:
307 COMMANDS:
George Keishing0c0bdd42021-07-23 13:36:06 -0500308 - 'errpt -a >/tmp/OS_errpt.txt ; errclear 0;'
Peter D Phand1fccd32021-07-21 06:45:54 -0500309 - 'bindprocessor -q >/tmp/OS_processors.txt'
George Keishing6ea92b02021-07-01 11:20:50 -0500310 FILES:
311 - '/tmp/OS_errpt.txt'
312 - '/tmp/OS_processors.txt'
313 PROTOCOL:
314 - 'SSH'
George Keishing0c0bdd42021-07-23 13:36:06 -0500315 DUMP_LOGS:
316 COMMANDS:
317 - 'ls -AX /tmp/htx/htxerr'
318 - 'ls -AX /tmp/htx/htxmsg'
George Keishing0c0bdd42021-07-23 13:36:06 -0500319 PROTOCOL:
320 - 'SCP'