Detect openSUSE distribution
Expand regex to detect and display the distribution name. Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
parent
ff85bd35ac
commit
24489e2644
@ -1044,7 +1044,7 @@ window.onerror = function (msg, url, lineNo, columnNo, errorObj) {
|
|||||||
<tr>
|
<tr>
|
||||||
<td>Distribution</td>
|
<td>Distribution</td>
|
||||||
<td class="dist text--align-right text--align-right"></td>
|
<td class="dist text--align-right text--align-right"></td>
|
||||||
<td>Guessed from the kernel version</td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Platform</td>
|
<td>Platform</td>
|
||||||
|
@ -273,7 +273,7 @@ class BaseKernelConfig:
|
|||||||
"Trigger process and kernel version": (
|
"Trigger process and kernel version": (
|
||||||
r"^CPU: \d+ PID: (?P<trigger_proc_pid>\d+) "
|
r"^CPU: \d+ PID: (?P<trigger_proc_pid>\d+) "
|
||||||
r"Comm: .* (Not tainted|Tainted:.*) "
|
r"Comm: .* (Not tainted|Tainted:.*) "
|
||||||
r"(?P<kernel_version>\d[\w.-]+) #\d",
|
r"(?P<kernel_version>\d[\w.-]+) (?:#\d) (?P<distribution>\w+ \w+).+",
|
||||||
True,
|
True,
|
||||||
),
|
),
|
||||||
# split caused by a limited number of iterations during converting PY regex into JS regex
|
# split caused by a limited number of iterations during converting PY regex into JS regex
|
||||||
@ -2975,7 +2975,7 @@ class OOMAnalyser:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
REC_KERNEL_VERSION = re.compile(
|
REC_KERNEL_VERSION = re.compile(
|
||||||
r"CPU: \d+ PID: \d+ Comm: .* (Not tainted|Tainted: [A-Z ]+) (?P<kernel_version>\d[\w.-]+) #.+"
|
r"CPU: \d+ PID: \d+ Comm: .* (Not tainted|Tainted: [A-Z ]+) (?P<kernel_version>\d[\w.-]+) (?:#\d) (?P<distribution>\w+ \w+).+"
|
||||||
)
|
)
|
||||||
"""RE to match the OOM line with kernel version"""
|
"""RE to match the OOM line with kernel version"""
|
||||||
|
|
||||||
@ -3662,13 +3662,17 @@ class OOMAnalyser:
|
|||||||
def _determinate_platform_and_distribution(self):
|
def _determinate_platform_and_distribution(self):
|
||||||
"""Determinate platform and distribution"""
|
"""Determinate platform and distribution"""
|
||||||
kernel_version = self.oom_result.details.get("kernel_version", "")
|
kernel_version = self.oom_result.details.get("kernel_version", "")
|
||||||
|
distribution = self.oom_result.details.get("distribution", None)
|
||||||
if "x86_64" in kernel_version:
|
if "x86_64" in kernel_version:
|
||||||
self.oom_result.details["platform"] = "x86 64bit"
|
self.oom_result.details["platform"] = "x86 64bit"
|
||||||
else:
|
else:
|
||||||
self.oom_result.details["platform"] = "unknown"
|
self.oom_result.details["platform"] = "unknown"
|
||||||
|
|
||||||
dist = "unknown"
|
dist = "unknown"
|
||||||
if ".el7uek" in kernel_version:
|
if distribution is not None:
|
||||||
|
# this should work on openSUSE
|
||||||
|
dist = distribution
|
||||||
|
elif ".el7uek" in kernel_version:
|
||||||
dist = "Oracle Linux 7 (Unbreakable Enterprise Kernel)"
|
dist = "Oracle Linux 7 (Unbreakable Enterprise Kernel)"
|
||||||
elif ".el7" in kernel_version:
|
elif ".el7" in kernel_version:
|
||||||
dist = "RHEL 7/CentOS 7"
|
dist = "RHEL 7/CentOS 7"
|
||||||
|
Loading…
Reference in New Issue
Block a user