blob: fa441a15910b82c8cbd30e59287a34a996256a58 [file] [log] [blame]
Michael Walsh90e14e02018-03-22 16:38:04 -05001#!/usr/bin/env python
2
3r"""
4Provide useful error log utility keywords.
5"""
6
7import gen_print as gp
8import sys
9import os
10import imp
11base_path = os.path.dirname(os.path.dirname(
12 imp.find_module("gen_robot_print")[1])) + os.sep
13sys.path.append(base_path + "data/")
14import variables as var
Michael Walsh193f33a2018-10-04 15:15:09 -050015from robot.libraries.BuiltIn import BuiltIn
16import gen_robot_utils as gru
17gru.my_import_resource("logging_utils.robot")
Michael Walsh90e14e02018-03-22 16:38:04 -050018
19
20def print_error_logs(error_logs, key_list=None):
Michael Walsh90e14e02018-03-22 16:38:04 -050021 r"""
22 Print the error logs to the console screen.
23
24 This function provides the following benefits:
25 - It will specify print_var parms for the caller (e.g. hex=1).
26 - It is much easier to call this function than to generate the desired code
27 directly from a robot script.
28
29 Description of argument(s):
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -050030 error_logs An error log dictionary such as the one
31 returned by the 'Get Error Logs' keyword.
32 key_list The list of keys to be printed. This may
33 be specified as either a python list
34 or a space-delimited string. In the
35 latter case, this function will convert
36 it to a python list. See the sprint_varx
37 function prolog for additionatl details.
Michael Walsh90e14e02018-03-22 16:38:04 -050038
39 Example use from a python script:
40
41 ${error_logs}= Get Error Logs
42 Print Error Logs ${error_logs} Message Timestamp
43
44 Sample output:
45
46 error_logs:
47 [/xyz/openbmc_project/logging/entry/3]:
48 [Timestamp]: 1521738335735
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -050049 [Message]:
50 xyz.openbmc_project.Inventory.Error.Nonfunctional
Michael Walsh90e14e02018-03-22 16:38:04 -050051 [/xyz/openbmc_project/logging/entry/2]:
52 [Timestamp]: 1521738334637
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -050053 [Message]:
54 xyz.openbmc_project.Inventory.Error.Nonfunctional
Michael Walsh90e14e02018-03-22 16:38:04 -050055 [/xyz/openbmc_project/logging/entry/1]:
56 [Timestamp]: 1521738300696
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -050057 [Message]:
58 xyz.openbmc_project.Inventory.Error.Nonfunctional
Michael Walsh90e14e02018-03-22 16:38:04 -050059 [/xyz/openbmc_project/logging/entry/4]:
60 [Timestamp]: 1521738337915
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -050061 [Message]:
62 xyz.openbmc_project.Inventory.Error.Nonfunctional
Michael Walsh90e14e02018-03-22 16:38:04 -050063
64 Another example call using a robot list:
65 ${error_logs}= Get Error Logs
66 ${key_list}= Create List Message Timestamp Severity
67 Print Error Logs ${error_logs} ${key_list}
68 """
69
70 if key_list is not None:
George Keishing36efbc02018-12-12 10:18:23 -060071 try:
Michael Walsh90e14e02018-03-22 16:38:04 -050072 key_list = key_list.split(" ")
George Keishing36efbc02018-12-12 10:18:23 -060073 except AttributeError:
74 pass
Michael Walsh90e14e02018-03-22 16:38:04 -050075 key_list.insert(0, var.BMC_LOGGING_ENTRY + ".*")
76
Michael Walsh39c00512019-07-17 10:54:06 -050077 gp.print_var(error_logs, key_list=key_list)
Michael Walsh193f33a2018-10-04 15:15:09 -050078
79
80def get_esels(error_logs=None):
81 r"""
82 Get all available extended Service Event Logs (eSELs) and return as a list.
83
84 Example robot code:
85 ${esels}= Get Esels
86 Rprint Vars esels
87
88 Example output (excerpt):
89 esels:
90 esels[0]: ESEL=00 00 df 00 00...
91 esels[1]: ESEL=00 00 df 00 00...
92
93 Description of argument(s):
94 error_logs The error_log data, which can be obtained
95 from 'Get Error Logs'. If this value is
96 None, then this function will call 'Get
97 Error Logs' on the caller's behalf.
98 """
99
100 if error_logs is None:
101 error_logs = BuiltIn().run_keyword('Get Error Logs')
102
103 # Look for any error log entries containing the 'AdditionalData' field
104 # which in turn has an entry starting with "ESEL=". Here is an excerpt of
105 # the error_logs that contains such an entry.
106 # error_logs:
107 # [/xyz/openbmc_project/logging/entry/1]:
108 # [AdditionalData]:
109 # [AdditionalData][0]: CALLOUT_INVENTORY_PATH=/xyz/openbmc_project/inventory/system/chassis/mot...
110 # [AdditionalData][1]: ESEL=00 00 df 00 00 00 00 20 00 04...
111 esels = []
112 for error_log in error_logs.values():
113 if 'AdditionalData' in error_log:
114 for additional_data in error_log['AdditionalData']:
115 if additional_data.startswith('ESEL='):
116 esels.append(additional_data)
117
118 return esels