Has anyone an idea how to read this table and parse out to CSV file or something. I need to convert it into graph(if possible).
I really confused how to read this table, not like 'show inventory' or 'show version' there's have a TextFSM Template to parse out the data, how about 'show proc cpu history' there's have TextFSM Template or anything?
You need to read the text file in and extract the 3 lines above each graph containing the numerical values. These need to be "rotated" and converted into integers.
The following code would read the text file in and extract the necessary lines. It first skips over all of the initial lines until it finds the header line for the three graphs.
It rotates the values (using
*zip(*data)
). Next it writes the data out to three separate CSV files, based on the source filenames.Lastly, it uses the data to display three graphs using the Python
matplotlib
library (which would need to be installed).The CSV files would start something like:
And the display would show:
matplotlib
can usually be installed using: