The below Example captures IOStat output with Python
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/python import subprocess import csv io_c = subprocess.Popen(['iostat', '-xnsMr', '1', '2'], stdout=subprocess.PIPE, shell=False, stderr=subprocess.PIPE) stdout = io_c.communicate()[0] lc = len(stdout.split('\n')) it_lc = lc / 2 + 2 reader = csv.reader(stdout.split('\n')[it_lc:], delimiter=',') for row in reader: if any(row): #print row print row[0],row[1],row[2],row[3],row[7],row[8],row[9],row[10] |
Output would look like
1 2 3 4 5 6 |
0.0 0.0 0.0 0.0 0.0 0 0 c3t3d0 0.0 0.0 0.0 0.0 0.0 0 0 c3t0d0 0.0 0.0 0.0 0.0 0.0 0 0 c3t1d0 0.0 0.0 0.0 0.0 0.0 0 0 c3t2d0 0.0 0.0 0.0 0.0 0.0 0 0 nas-srv:/export/sys-admin/unix 0.0 0.0 0.0 0.0 0.0 0 0 10.10.10.11:/export/shares |
Hi Eli, have you extended this since 2016?
Hi, and welcome to my Blog.
No, I have not used this in a while, but if you are in the latest versions of Solaris, I believe from 11.4+, you can try using Analytics which is much nicer.
For a custom approach, I have a series of articles written up, part 1 is here. – http://www.devtech101.com/2016/08/31/capturing-solaris-11-4-12-analytics-sstore-part-1/