cancel
Showing results for 
Search instead for 
Did you mean: 

ST06 disk information

Former Member
0 Kudos

Hello All,

We have SAP 4.6c / Oracle / Sun solaris 10. In ST06 -detail analysis menu-under snapshot analysis---DISK

I am getting disk information , there are lots of disks starting with ssdxxx , I would like to know from where this information coming from.

I asked Solaris admin and storage admin, they don't know where these disk number coming from. they are not available at OS level and in storage LUN.

Please reply immediately

Regards

Atul

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

The figures shown in ST06 can be seen at server level with 'iostat'.

Data in ssd notation:

iostat -cx interval count

For cxdxsx notation add 'n' argument:

iostat -cnx interval count

Regards,

Mark

markus_doehr2
Active Contributor
0 Kudos

What filesystem do you use?

Markus

Former Member
0 Kudos

Hello Markus,

zfs file systems

Atul-

markus_doehr2
Active Contributor
0 Kudos

What is the exact output you're wondering - can you give me an example?

Here I see e. g.

prtconf -v | more

<...>
                dev=(29,788)
                    dev_path=/scsi_vhci/disk@g600508b40005563a0000900005970000:u
                        spectype=blk type=minor
                        dev_link=/dev/dsk/c0t600508B40005563A0000900005970000d0p4
                        dev_link=/dev/sd98u
                    dev_path=/scsi_vhci/disk@g600508b40005563a0000900005970000:u,raw
                        spectype=chr type=minor
                        dev_link=/dev/rdsk/c0t600508B40005563A0000900005970000d0p4
                        dev_link=/dev/rsd98u
<...>

Here you see that the LUN is mapped to a device /dev/sdxx and /dev/rsdxx for the raw devices.

Markus

Former Member
0 Kudos

Hello Markus,

Thanks for the reply , below is the info I am looking for , from where SAP is reading this info.

Fri May 8 09:52:10 2009 interval 10

Disk Resp. Util. Queue Wait Serv

[ms] [%] Len. [ms] [ms]

ssd507 0 0 *647 0 0

ssd518 0 0 *647 0 0

ssd519 0 0 *647 0 0

ssd522 0 0 *647 0 0

ssd523 0 0 *647 0 0

ssd524 0 0 *647 0 0

ssd525 0 0 *647 0 0

ssd528 0 0 0 0 0

ssd529 0 0 0 0 0

ssd530 0 0 0 0 0

ssd531 0 0 0 0 0

ssd532 0 0 0 0 0

Regards

Atul-

markus_doehr2
Active Contributor
0 Kudos

Try the following to map the SSD disks to the cxdxsx notation:

iostat -E | grep Soft | awk '{ print $1}' > /tmp/a
iostat -En | grep Soft| awk '{ print $1 }' > /tmp/b
paste /tmp/a /tmp/b

Markus