diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-06-08 08:53:47 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-06-08 08:53:47 +0200 |
commit | c64d702d307c6cf99260af5c8c15cf8cb5b4ae87 (patch) | |
tree | 259783b391d900059a84bf85e09231350b12e414 /src/op_mode/cpu_summary.py | |
parent | e1cf8bffdadcfa2ec64db479f1d5ea78e9e47d3f (diff) | |
download | vyos-1x-c64d702d307c6cf99260af5c8c15cf8cb5b4ae87.tar.gz vyos-1x-c64d702d307c6cf99260af5c8c15cf8cb5b4ae87.zip |
T689: add a new script for 'show hardware cpu summary'.
Since the format is common in /proc, make parsing the data a library
function.
Diffstat (limited to 'src/op_mode/cpu_summary.py')
-rwxr-xr-x | src/op_mode/cpu_summary.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/op_mode/cpu_summary.py b/src/op_mode/cpu_summary.py new file mode 100755 index 000000000..3da5835e9 --- /dev/null +++ b/src/op_mode/cpu_summary.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 + +import re + +from vyos.util import colon_separated_to_dict + + +FILE_NAME = '/proc/cpuinfo' + +with open(FILE_NAME, 'r') as f: + data_raw = f.read() + +data = colon_separated_to_dict(data_raw) + +# Accumulate all data in a dict for future support for machine-readable output +cpu_data = {} +cpu_data['cpu_number'] = len(data['processor']) +cpu_data['models'] = list(set(data['model name'])) + +# Strip extra whitespace from CPU model names, /proc/cpuinfo is prone to that +cpu_data['models'] = map(lambda s: re.sub('\s+', ' ', s), cpu_data['models']) + +print("CPU(s): {0}".format(cpu_data['cpu_number'])) +print("CPU model(s): {0}".format(",".join(cpu_data['models']))) |