From sacadmin Fri May 15 16:07:17 2009
Received: from geralyn.sfbay.sun.com (geralyn.SFBay.Sun.COM [129.146.226.228])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4FN7HPf029896;
	Fri, 15 May 2009 16:07:17 -0700 (PDT)
Received: from geralyn.sfbay.sun.com (localhost [127.0.0.1])
	by geralyn.sfbay.sun.com (8.14.3+Sun/8.14.3) with ESMTP id n4FN2pAM002284;
	Fri, 15 May 2009 16:02:51 -0700 (PDT)
Received: (from sherrym@localhost)
	by geralyn.sfbay.sun.com (8.14.3+Sun/8.14.3/Submit) id n4FN2o0D002280;
	Fri, 15 May 2009 16:02:50 -0700 (PDT)
Date: Fri, 15 May 2009 16:02:50 -0700 (PDT)
From: Sherry Moore <sherrym@geralyn.sfbay.sun.com>
Message-Id: <200905152302.n4FN2o0D002280@geralyn.sfbay.sun.com>
To: PSARC-record@sac.sfbay.sun.com
Cc: Krishnendu.Sadhukhan@Sun.Com, cmynhier@gmail.com
Subject: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307 Self Review]
Status: RO
Content-Length: 5515


Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
This information is Copyright 2009 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 Time Stamp Option for xxstat Commands Phase II
    1.2. Name of Document Author/Supplier:
	 Author:  Chad Mynhier
    1.3  Date of This Document:
	15 May, 2009
4. Technical Description
SUMMARY

	This case enhances the following commands to emit a timestamp:

	- auditstat(1M)
	- netstat(1M)
	- cpustat(1M)
	- ctstat(1)
	- fmstat(1M)
	- nfsstat(1M)
	- intrstat(1M)
	- poolstat(1M)
	- rcapstat(1)
	- zpool(1M) (the iostat sub-command)

	This case follows the precedent set by PSARC 2009/105[1] that
	all "*stat" commands that print statistics at a regular
	interval should implement a timestamp feature similar to the
	one described here.

DETAILS

	The recent putback of the fix to bug 4775687 ("would like a
	timestamp option like iostat has added to mpstat, vmstat and
	prstat")[2] added a timestamp option to these three commands to
	match the existing functionality in iostat(1M) and fsstat(1M).
	PSARC case 2009/105 set the precedent that all "*stat" commands
	should include a similar option.  This case corrects the list
	of commands in the summary to meet that precedent.  Note that
	the timestamp will be printed with strftime(3C) using the
	correct locale-specific format string.

	Most of these commands will use the -T option for this
	purpose.  The fmstat(1M) command has a pre-existing -T option,
	so the -d ("date") option is used here instead.  This follows
	the precedent of prstat(1M), which also had a pre-existing -T
	option.  In either case, the option has a single one-character
	argument,'u' or 'd', to specify whether the timestamp should be
	printed in Unix format (i.e., seconds since epoch) or in
	date(1) format.

	For those cases in which a header is printed periodically, the
	timestamp is printed before the header.  For example:

# ./ctstat -i 101 -T d 1 3
Wed May  6 09:05:45 EDT 2009
CTID    ZONEID  TYPE    STATE   HOLDER  EVENTS  QTIME   NTIME   
101     0       process owned   100004  0       -       -       
Wed May  6 09:05:46 EDT 2009
CTID    ZONEID  TYPE    STATE   HOLDER  EVENTS  QTIME   NTIME   
101     0       process owned   100004  0       -       -       
Wed May  6 09:05:47 EDT 2009
CTID    ZONEID  TYPE    STATE   HOLDER  EVENTS  QTIME   NTIME   
101     0       process owned   100004  0       -       -       
# 

	The decision to print the timestamp in this way is based on the
	precedent set by iostat(1M) and was followed during the
	implementation of the fix for 4775687.

EXAMPLES

	This example shows the output of fmstat(1M) with a timestamp:

# ./fmstat -m disk-transport -d u 1 3
1241620519
                NAME VALUE            DESCRIPTION
             dropped 0                number of dropped ereports

1241620520
                NAME VALUE            DESCRIPTION
             dropped 0                number of dropped ereports

1241620521
                NAME VALUE            DESCRIPTION
             dropped 0                number of dropped ereports
# 

	This example shows the output of nfsstat(1M) with a timestamp:

# ./nfsstat -sr -T d 1 3
Wed May  6 10:38:40 EDT 2009

Server rpc:
Connection oriented:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
Connectionless:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
********************************************************************************
Wed May  6 10:38:41 EDT 2009

Server rpc:
Connection oriented:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
Connectionless:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
********************************************************************************
Wed May  6 10:38:42 EDT 2009

Server rpc:
Connection oriented:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
Connectionless:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
********************************************************************************
# 

DOCUMENTATION

	This case proposes adding the following text to the man pages
	for these commands, with the exception that the option shall be
	listed as "-d" for fmstat(1M):

	-T u | d
		Emit a time stamp.

		Specify u for a printed representation of the internal
		representation  of  time.  See time(2).  Specify d for
		standard date format. See date(1).

	Additionally, the option should be added to the SYNOPSIS
	section of the man pages for each of these.

EXPORTED INTERFACES

IMPORTED INTERFACES

REFERENCES

[1] http://arc.opensolaris.org/caselog/PSARC/2009/105/mail
[2] would like a timestamp option like iostat has added to mpstat, vmstat
    and prstat
    (http://bugs.opensolaris.org/view_bug.do?bug_id=4775687)

6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		ON
    6.5. ARC review type: Automatic
    6.6. ARC Exposure: open


From sherry.moore@sun.com Fri May 15 16:25:55 2009
Received: from sunmail3mpk.sfbay.sun.com (sunmail3mpk.SFBay.Sun.COM [129.146.11.52])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4FNPt9q025126
	for <psarc-ext@sac.sfbay.sun.com>; Fri, 15 May 2009 16:25:55 -0700 (PDT)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail3mpk.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n4FNPtZi019997;
	Fri, 15 May 2009 16:25:55 -0700 (PDT)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJP00G0FL312600@nwk-avmta-2.sfbay.sun.com>; Fri,
 15 May 2009 16:25:49 -0700 (PDT)
Received: from geralyn.sfbay.sun.com ([129.146.226.228])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJP005P6L31HE70@nwk-avmta-2.sfbay.sun.com>; Fri,
 15 May 2009 16:25:49 -0700 (PDT)
Received: from geralyn.sfbay.sun.com (localhost [127.0.0.1])
	by geralyn.sfbay.sun.com (8.14.3+Sun/8.14.3) with ESMTP id n4FNLQEs002395;
 Fri, 15 May 2009 16:21:26 -0700 (PDT)
Received: (from sherrym@localhost)
	by geralyn.sfbay.sun.com (8.14.3+Sun/8.14.3/Submit) id n4FNLQhr002394; Fri,
 15 May 2009 16:21:26 -0700 (PDT)
Date: Fri, 15 May 2009 16:21:26 -0700
From: Sherry Moore <sherry.moore@sun.com>
Subject: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307	Self
 Review]
To: PSARC-ext@sun.com
Cc: Krishnendu.Sadhukhan@sun.com, cmynhier@gmail.com
Message-id: <20090515232125.GA2303@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.4.1.325704
X-Authentication-warning: geralyn.sfbay.sun.com: sherrym set sender to
 sherry.moore@sun.com using -f
User-Agent: Mutt/1.5.19 (2009-01-05)
Status: RO
Content-Length: 5746

I am sponsoring this case for Chad Mynhier and closing it as approved
automatic as it's simply a follow-on to PSARC/2009/105 to cover more
commands.

Thanks,
Sherry
-- 
Sherry Moore, Solaris Core Kernel	http://blogs.sun.com/sherrym

Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
This information is Copyright 2009 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 Time Stamp Option for xxstat Commands Phase II
    1.2. Name of Document Author/Supplier:
	 Author:  Chad Mynhier
    1.3  Date of This Document:
	15 May, 2009
4. Technical Description
SUMMARY

	This case enhances the following commands to emit a timestamp:

	- auditstat(1M)
	- netstat(1M)
	- cpustat(1M)
	- ctstat(1)
	- fmstat(1M)
	- nfsstat(1M)
	- intrstat(1M)
	- poolstat(1M)
	- rcapstat(1)
	- zpool(1M) (the iostat sub-command)

	This case follows the precedent set by PSARC 2009/105[1] that
	all "*stat" commands that print statistics at a regular
	interval should implement a timestamp feature similar to the
	one described here.

DETAILS

	The recent putback of the fix to bug 4775687 ("would like a
	timestamp option like iostat has added to mpstat, vmstat and
	prstat")[2] added a timestamp option to these three commands to
	match the existing functionality in iostat(1M) and fsstat(1M).
	PSARC case 2009/105 set the precedent that all "*stat" commands
	should include a similar option.  This case corrects the list
	of commands in the summary to meet that precedent.  Note that
	the timestamp will be printed with strftime(3C) using the
	correct locale-specific format string.

	Most of these commands will use the -T option for this
	purpose.  The fmstat(1M) command has a pre-existing -T option,
	so the -d ("date") option is used here instead.  This follows
	the precedent of prstat(1M), which also had a pre-existing -T
	option.  In either case, the option has a single one-character
	argument,'u' or 'd', to specify whether the timestamp should be
	printed in Unix format (i.e., seconds since epoch) or in
	date(1) format.

	For those cases in which a header is printed periodically, the
	timestamp is printed before the header.  For example:

# ./ctstat -i 101 -T d 1 3
Wed May  6 09:05:45 EDT 2009
CTID    ZONEID  TYPE    STATE   HOLDER  EVENTS  QTIME   NTIME   
101     0       process owned   100004  0       -       -       
Wed May  6 09:05:46 EDT 2009
CTID    ZONEID  TYPE    STATE   HOLDER  EVENTS  QTIME   NTIME   
101     0       process owned   100004  0       -       -       
Wed May  6 09:05:47 EDT 2009
CTID    ZONEID  TYPE    STATE   HOLDER  EVENTS  QTIME   NTIME   
101     0       process owned   100004  0       -       -       
# 

	The decision to print the timestamp in this way is based on the
	precedent set by iostat(1M) and was followed during the
	implementation of the fix for 4775687.

EXAMPLES

	This example shows the output of fmstat(1M) with a timestamp:

# ./fmstat -m disk-transport -d u 1 3
1241620519
                NAME VALUE            DESCRIPTION
             dropped 0                number of dropped ereports

1241620520
                NAME VALUE            DESCRIPTION
             dropped 0                number of dropped ereports

1241620521
                NAME VALUE            DESCRIPTION
             dropped 0                number of dropped ereports
# 

	This example shows the output of nfsstat(1M) with a timestamp:

# ./nfsstat -sr -T d 1 3
Wed May  6 10:38:40 EDT 2009

Server rpc:
Connection oriented:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
Connectionless:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
********************************************************************************
Wed May  6 10:38:41 EDT 2009

Server rpc:
Connection oriented:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
Connectionless:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
********************************************************************************
Wed May  6 10:38:42 EDT 2009

Server rpc:
Connection oriented:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
Connectionless:
calls      badcalls   nullrecv   badlen     xdrcall    dupchecks  dupreqs    
0          0          0          0          0          0          0          
********************************************************************************
# 

DOCUMENTATION

	This case proposes adding the following text to the man pages
	for these commands, with the exception that the option shall be
	listed as "-d" for fmstat(1M):

	-T u | d
		Emit a time stamp.

		Specify u for a printed representation of the internal
		representation  of  time.  See time(2).  Specify d for
		standard date format. See date(1).

	Additionally, the option should be added to the SYNOPSIS
	section of the man pages for each of these.

EXPORTED INTERFACES

IMPORTED INTERFACES

REFERENCES

[1] http://arc.opensolaris.org/caselog/PSARC/2009/105/mail
[2] would like a timestamp option like iostat has added to mpstat, vmstat
    and prstat
    (http://bugs.opensolaris.org/view_bug.do?bug_id=4775687)

6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		ON
    6.5. ARC review type: Automatic
    6.6. ARC Exposure: open

From Kais.Belgaied@sun.com Sun May 17 13:38:36 2009
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4HKcZM2023150
	for <psarc-ext@sac.sfbay.sun.com>; Sun, 17 May 2009 13:38:36 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id n4HKcUkH007712;
	Mon, 18 May 2009 04:38:31 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJT00L012O68N00@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 May 2009 13:38:30 -0700 (PDT)
Received: from jurassic-x4600.sfbay.sun.com ([129.146.17.63])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJT00AEJ2O6LJ60@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 May 2009 13:38:30 -0700 (PDT)
Received: from [129.146.11.144]
 (sr1-jurassic-01.SFBay.Sun.COM [129.146.11.144])	by
 jurassic-x4600.sfbay.sun.com (8.14.3+Sun/8.14.3) with ESMTP id n4HKcTmq790786;
 Sun, 17 May 2009 13:38:29 -0700 (PDT)
Date: Sun, 17 May 2009 13:38:29 -0700
From: Kais Belgaied <Kais.Belgaied@sun.com>
Subject: Re: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307
 Self Review]
In-reply-to: <20090515232125.GA2303@sun.com>
To: Sherry Moore <sherry.moore@sun.com>
Cc: PSARC-ext@sun.com, Krishnendu.Sadhukhan@sun.com, cmynhier@gmail.com
Reply-to: Kais.Belgaied@sun.com
Message-id: <4A1075C5.6080509@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <20090515232125.GA2303@sun.com>
User-Agent: Thunderbird 2.0.0.19 (X11/20090110)
Status: RO
Content-Length: 381

On 05/15/09 16:21, Sherry Moore wrote:
> I am sponsoring this case for Chad Mynhier and closing it as approved
> automatic as it's simply a follow-on to PSARC/2009/105 to cover more
> commands.
>   


will there be more follow-ons to 2009/105 for the remaining of xxstat 
commands?
netstat, dladm show-link -s -i, flowadm show-flow -s -i, etc?

    Kais.

> Thanks,
> Sherry
>   


From carlsonj@phorcys.east.sun.com Mon May 18 03:58:01 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4IAw0SK028148
	for <psarc-ext@sac.sfbay.sun.com>; Mon, 18 May 2009 03:58:01 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n4IAvf1J026424
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@Sun.COM>; Mon, 18 May 2009 11:58:00 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJU00C036GMU200@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@Sun.COM
 (ORCPT PSARC-ext@Sun.COM); Mon, 18 May 2009 03:57:58 -0700 (PDT)
Received: from dm-east-01.east.sun.com ([129.148.9.192])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJU009O36GLUJ30@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@Sun.COM (ORCPT PSARC-ext@Sun.COM); Mon,
 18 May 2009 03:57:58 -0700 (PDT)
Received: from phorcys.east.sun.com (phorcys.East.Sun.COM [129.148.174.143])
	by dm-east-01.east.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2)
 with ESMTP id n4IAvtgf047530; Mon, 18 May 2009 06:57:55 -0400 (EDT)
Received: from phorcys.east.sun.com (phorcys.local [127.0.0.1])
	by phorcys.east.sun.com (8.14.3+Sun/8.14.3) with ESMTP id n4IAuxSM022315; Mon,
 18 May 2009 06:56:59 -0400 (EDT)
Received: (from carlsonj@localhost)
	by phorcys.east.sun.com (8.14.3+Sun/8.14.3/Submit) id n4IAuxUg022312; Mon,
 18 May 2009 06:56:59 -0400 (EDT)
Date: Mon, 18 May 2009 06:56:59 -0400
From: James Carlson <james.d.carlson@sun.com>
Subject: Re: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307
	Self Review]
In-reply-to: <20090515232125.GA2303@sun.com>
To: Sherry Moore <Sherry.Moore@sun.com>, Kais.Belgaied@sun.com
Cc: PSARC-ext@sun.com, Krishnendu.Sadhukhan@sun.com, cmynhier@gmail.com
Message-id: <18961.16123.790092.456367@gargle.gargle.HOWL>
MIME-version: 1.0
X-Mailer: VM 7.01 under Emacs 21.3.1
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <20090515232125.GA2303@sun.com> <4A1075C5.6080509@Sun.COM>
Status: RO
Content-Length: 652

Sherry Moore writes:
> 	- netstat(1M)
Kais Belgaied writes:
> will there be more follow-ons to 2009/105 for the remaining of xxstat 
> commands?
> netstat, dladm show-link -s -i, flowadm show-flow -s -i, etc?
  ^^^^^^^

It looks like at least one of those is being addressed.

I think the rest would be addressed if the project team updated
Sowmini's CR 6782154 work, which is a common output formatter for
networking commands.

-- 
James Carlson, Solaris Networking              <james.d.carlson@sun.com>
Sun Microsystems / 35 Network Drive        71.232W   Vox +1 781 442 2084
MS UBUR02-212 / Burlington MA 01803-2757   42.496N   Fax +1 781 442 1677

From cmynhier@gmail.com Mon May 18 13:13:58 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4IKDvcY008807
	for <psarc-ext@sac.sfbay.sun.com>; Mon, 18 May 2009 13:13:58 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n4IKDmTQ004800;
	Mon, 18 May 2009 21:13:53 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJU00M03W744A00@nwk-avmta-1.sfbay.Sun.COM>; Mon,
 18 May 2009 13:13:52 -0700 (PDT)
Received: from sca-ea-mail-1.sun.com ([192.18.43.24])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJU00KTDW740K80@nwk-avmta-1.sfbay.Sun.COM>; Mon,
 18 May 2009 13:13:52 -0700 (PDT)
Received: from relay43i.sun.com ([192.5.209.74])
	by sca-ea-mail-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id n4IK3k1c005809;
 Mon, 18 May 2009 20:13:51 +0000 (GMT)
Received: from mmp42es.mmp.us.syntegra.com ([160.41.221.11] [160.41.221.11])
 by relay43i.sun.com with ESMTP id BT-MMP-4054171; Mon,
 18 May 2009 20:13:51 +0000 (Z)
Received: from relay43i.sun.com (relay43i.sun.com [192.5.209.74])
 by mmp42es.mmp.us.syntegra.com with ESMTP id BT-MMP-18330308; Mon,
 18 May 2009 20:13:50 +0000 (Z)
Received: from mail-bw0-f224.google.com ([209.85.218.224] [209.85.218.224])
 by relay4i.sun.com with ESMTP id BT-MMP-20838498; Mon,
 18 May 2009 20:13:50 +0000 (Z)
Received: by bwz24 with SMTP id 24so3644932bwz.8 for <multiple recipients>;
 Mon, 18 May 2009 13:12:58 -0700 (PDT)
Received: by 10.223.117.14 with SMTP id o14mr4657474faq.21.1242677578755; Mon,
 18 May 2009 13:12:58 -0700 (PDT)
Date: Mon, 18 May 2009 16:12:58 -0400
From: Chad Mynhier <cmynhier@gmail.com>
Subject: Re: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307
	Self Review]
In-reply-to: <18961.16123.790092.456367@gargle.gargle.HOWL>
To: James Carlson <james.d.carlson@sun.com>
Cc: Sherry Moore <Sherry.Moore@sun.com>, Kais.Belgaied@sun.com,
        PSARC-ext@sun.com, Krishnendu.Sadhukhan@sun.com
Message-id: <3cf3989e0905181312j7c8da790p13f1e882496548d9@mail.gmail.com>
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;        d=gmail.com;
 s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references
 :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding;
 bh=8zlYwjhayF7vQ/DTvbmXy3d7BpuJBd0JWIw68Qp+S44=;
 b=tVP4Ei+/44meDsbP04P5MoWBoQys3sSQpZcMryOZUOm8psarn7vq9InUmyAZf5VFnt
 e7Trl++g4UaIFzdIK4h/n0imbDIf63g2oeDTIQlTrw9Ef0VMVWVAYV8Axo4/sCZE+P6t
 uQQdHxAoeAARdB7i3i4QiYEOOcU9lyQ83ZzFg=
DomainKey-Signature: a=rsa-sha1; c=nofws;        d=gmail.com; s=gamma;
 h=mime-version:in-reply-to:references:date:message-id:subject:from:to
 :cc:content-type:content-transfer-encoding;
 b=Ydh7aSc2+vEt+ZuxpGX/jMW0VVGdO6Ld1AS/+4S8EaVwkHVbAoSf4HavEH6ahkDs7n
 MzeukBusuB+af7mSamfYkyG/l3B9pa6wKT2/QzDlYmAn+mxPlZSXGpSQsTHP1Q9RQvkS
 RjVXj7cxNyWOUvXjIhlHWMBgR8AV84flX8VFs=
X-PMX-Version: 5.4.1.325704
X-Brightmail-Tracker: AAAAAA==
X-Antispam: No, score=0.0/5.0, scanned in 0.059sec at (localhost [127.0.0.1])
	by smf-spamd v1.3.1 - http://smfs.sf.net/
References: <4A1075C5.6080509@Sun.COM> <20090515232125.GA2303@sun.com>
 <18961.16123.790092.456367@gargle.gargle.HOWL>
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by sac.sfbay.sun.com id n4IKDvcY008807
Status: RO
Content-Length: 941

On Mon, May 18, 2009 at 6:56 AM, James Carlson <james.d.carlson@sun.com> wrote:
> Sherry Moore writes:
>>       - netstat(1M)
> Kais Belgaied writes:
>> will there be more follow-ons to 2009/105 for the remaining of xxstat
>> commands?
>> netstat, dladm show-link -s -i, flowadm show-flow -s -i, etc?
>  ^^^^^^^
>
> It looks like at least one of those is being addressed.
>
> I think the rest would be addressed if the project team updated
> Sowmini's CR 6782154 work, which is a common output formatter for
> networking commands.

Yes, as James pointed out, netstat was already included.  I could
certainly add dladm and flowadm to this list.

In general, though, I wasn't planning on another follow-on myself.  I
added the timestamp option to those remaining xxstat commands that I
could test.  There are other xxstat commands that I didn't touch, such
as ndmpstat(1M) or dsstat(1M), because I couldn't have adequately
tested them.

Chad


From cmynhier@gmail.com Tue May 19 13:04:53 2009
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4JK4qgK022761
	for <psarc-ext@sac.sfbay.sun.com>; Tue, 19 May 2009 13:04:53 -0700 (PDT)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id n4JK4jKu018396;
	Wed, 20 May 2009 04:04:46 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJW00J05QFYRN00@nwk-avmta-2.sfbay.sun.com>; Tue,
 19 May 2009 13:04:46 -0700 (PDT)
Received: from sca-ea-mail-3.sun.com ([192.18.43.21])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJW00J0CQFX5Q60@nwk-avmta-2.sfbay.sun.com>; Tue,
 19 May 2009 13:04:45 -0700 (PDT)
Received: from relay11i.sun.com
 (ip121.net129179-4.block1.us.syntegra.com [129.179.4.121])
	by sca-ea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n4JK0FIa006986;
 Tue, 19 May 2009 20:04:45 +0000 (GMT)
Received: from mmp13es.mmp.us.syntegra.com ([160.41.208.13] [160.41.208.13])
 by relay11i.sun.com with ESMTP id BT-MMP-2740158; Tue,
 19 May 2009 20:04:45 +0000 (Z)
Received: from relay14i.sun.com (relay14i.sun.com [129.179.4.124])
 by mmp13es.mmp.us.syntegra.com with ESMTP id BT-MMP-47845333; Tue,
 19 May 2009 20:04:08 +0000 (Z)
Received: from mail-fx0-f165.google.com ([209.85.220.165] [209.85.220.165])
 by relay1i.sun.com with ESMTP id BT-MMP-26077892; Tue,
 19 May 2009 20:04:08 +0000 (Z)
Received: by mail-fx0-f165.google.com with SMTP id 9so24826fxm.8 for <multiple
 recipients>; Tue, 19 May 2009 13:04:00 -0700 (PDT)
Received: by 10.223.107.135 with SMTP id b7mr424321fap.30.1242763439987; Tue,
 19 May 2009 13:03:59 -0700 (PDT)
Date: Tue, 19 May 2009 16:03:59 -0400
From: Chad Mynhier <cmynhier@gmail.com>
Subject: Re: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307
	Self Review]
In-reply-to: <3cf3989e0905181312j7c8da790p13f1e882496548d9@mail.gmail.com>
To: James Carlson <james.d.carlson@sun.com>
Cc: Sherry Moore <sherry.moore@sun.com>, Kais.Belgaied@sun.com,
        PSARC-ext@sun.com, Krishnendu.Sadhukhan@sun.com
Message-id: <3cf3989e0905191303ndc2a4f4h449ac1ffaf01503@mail.gmail.com>
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;        d=gmail.com;
 s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references
 :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding;
 bh=sVN04XvS/V92yDIwcwFG2aQC3TSTE2w8XWNamNbi5Pw=;
 b=fTQ2xPRuuXDkTa+iW4MRtB3LSxIJpqPltxSJzZp8v/9GKuHkAFDSv+PXLREdiQzz6a
 lCNI/b+9Kz4LeTE1U2ooUVUY9JtIkf1pyS2U+gQjv9G3SEdKt14gzhuKJIwoaBTdGxzS
 qdnewK+MsZqoiqAcxSZjKPqEwJ7P2obPDfriw=
DomainKey-Signature: a=rsa-sha1; c=nofws;        d=gmail.com; s=gamma;
 h=mime-version:in-reply-to:references:date:message-id:subject:from:to
 :cc:content-type:content-transfer-encoding;
 b=JDwyulscB8Sph4p7vlStVRjr6GW5veYrMgXFQcuHP486Mh7B/dN0O6VNr9P356w31A
 DZGQjEd4+TbAKA0DWDmdIkK8E/uRaadp2cZpBnKQClTh9PyivJnro7DW2V7dJwmvdAK/
 PiWJqNZfzB0zuE3AivTBKDun8gj3Xtaa+7gLg=
X-PMX-Version: 5.4.1.325704
X-Brightmail-Tracker: AAAAAA==
X-Antispam: No, score=0.0/5.0, scanned in 0.062sec at (localhost [127.0.0.1])
	by smf-spamd v1.3.1 - http://smfs.sf.net/
References: <4A1075C5.6080509@Sun.COM> <20090515232125.GA2303@sun.com>
 <18961.16123.790092.456367@gargle.gargle.HOWL>
 <3cf3989e0905181312j7c8da790p13f1e882496548d9@mail.gmail.com>
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by sac.sfbay.sun.com id n4JK4qgK022761
Status: RO
Content-Length: 1013

On Mon, May 18, 2009 at 4:12 PM, Chad Mynhier <cmynhier@gmail.com> wrote:
> On Mon, May 18, 2009 at 6:56 AM, James Carlson <james.d.carlson@sun.com> wrote:
>> Sherry Moore writes:
>>>       - netstat(1M)
>> Kais Belgaied writes:
>>> will there be more follow-ons to 2009/105 for the remaining of xxstat
>>> commands?
>>> netstat, dladm show-link -s -i, flowadm show-flow -s -i, etc?
>>  ^^^^^^^
>>
>> It looks like at least one of those is being addressed.
>>
>> I think the rest would be addressed if the project team updated
>> Sowmini's CR 6782154 work, which is a common output formatter for
>> networking commands.
>
> Yes, as James pointed out, netstat was already included.  I could
> certainly add dladm and flowadm to this list.
>

Just to be clear, I'm adding these two ("dladm show-link -s -i" and
"flowadm show-flow -s -i") to the list of commands covered by this
case.  I've been told that there's no need to update the one-pager
itself and that this email thread is sufficient documentation.

Chad


From sherry.moore@sun.com Tue May 19 13:14:38 2009
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4JKEbhk023030
	for <psarc-ext@sac.sfbay.sun.com>; Tue, 19 May 2009 13:14:38 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id n4JK9VTh021176;
	Wed, 20 May 2009 04:14:31 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJW00K0FQW25800@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 May 2009 13:14:26 -0700 (PDT)
Received: from geralyn.sfbay.sun.com ([129.146.226.228])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJW00AJTQW24C80@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 May 2009 13:14:26 -0700 (PDT)
Received: from geralyn.sfbay.sun.com (localhost [127.0.0.1])
	by geralyn.sfbay.sun.com (8.14.3+Sun/8.14.3) with ESMTP id n4JKAEUa001633;
 Tue, 19 May 2009 13:10:14 -0700 (PDT)
Received: (from sherrym@localhost)
	by geralyn.sfbay.sun.com (8.14.3+Sun/8.14.3/Submit) id n4JKAEx6001632; Tue,
 19 May 2009 13:10:14 -0700 (PDT)
Date: Tue, 19 May 2009 13:10:14 -0700
From: Sherry Moore <sherry.moore@sun.com>
Subject: Re: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307
	Self Review]
In-reply-to: <3cf3989e0905191303ndc2a4f4h449ac1ffaf01503@mail.gmail.com>
To: Chad Mynhier <cmynhier@gmail.com>
Cc: James Carlson <james.d.carlson@sun.com>,
        Sherry Moore <sherry.moore@sun.com>, Kais.Belgaied@sun.com,
        PSARC-ext@sun.com, Krishnendu.Sadhukhan@sun.com
Message-id: <20090519201013.GB1607@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.4.1.325704
References: <4A1075C5.6080509@Sun.COM> <20090515232125.GA2303@sun.com>
 <18961.16123.790092.456367@gargle.gargle.HOWL>
 <3cf3989e0905181312j7c8da790p13f1e882496548d9@mail.gmail.com>
 <3cf3989e0905191303ndc2a4f4h449ac1ffaf01503@mail.gmail.com>
X-Authentication-warning: geralyn.sfbay.sun.com: sherrym set sender to
 sherry.moore@sun.com using -f
User-Agent: Mutt/1.5.19 (2009-01-05)
Status: RO
Content-Length: 686

> Just to be clear, I'm adding these two ("dladm show-link -s -i" and
> "flowadm show-flow -s -i") to the list of commands covered by this
> case.  I've been told that there's no need to update the one-pager
> itself and that this email thread is sufficient documentation.

On second thought, how about you send me an updated one with the added
commands, I will copy it to the materials directory for your ARC case.
Once I have copied the file (and send you the link to the file), you
can respond the mail stating that you will add those two commands, and
the case file has been updated and can be found where.

Sherry
-- 
Sherry Moore, Solaris Core Kernel	http://blogs.sun.com/sherrym

From cmynhier@gmail.com Tue May 19 14:53:37 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n4JLrag0024916
	for <psarc-ext@sac.sfbay.sun.com>; Tue, 19 May 2009 14:53:36 -0700 (PDT)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n4JLrSNo025527;
	Tue, 19 May 2009 22:53:32 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KJW0030DVH55X00@nwk-avmta-2.sfbay.sun.com>; Tue,
 19 May 2009 14:53:29 -0700 (PDT)
Received: from brmea-mail-1.sun.com ([192.18.98.31])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KJW003AUVH50F00@nwk-avmta-2.sfbay.sun.com>; Tue,
 19 May 2009 14:53:29 -0700 (PDT)
Received: from relay41i.sun.com ([192.5.209.70])
	by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n4JLpGRN018323; Tue,
 19 May 2009 21:53:28 +0000 (GMT)
Received: from mms49es.mms.us.syntegra.com ([160.41.221.232] [160.41.221.232])
 by relay41i.sun.com with ESMTP id BT-MMP-4190499; Tue,
 19 May 2009 21:53:18 +0000 (Z)
Received: from relay43i.sun.com (relay43i.sun.com [192.5.209.74])
 by mms49es.mms.us.syntegra.com with ESMTP id BT-MMP-19995867; Tue,
 19 May 2009 21:53:17 +0000 (Z)
Received: from mail-bw0-f176.google.com ([209.85.218.176] [209.85.218.176])
 by relay4i.sun.com with ESMTP id BT-MMP-22895457; Tue,
 19 May 2009 21:53:17 +0000 (Z)
Received: by bwz24 with SMTP id 24so84667bwz.8 for <multiple recipients>; Tue,
 19 May 2009 14:52:26 -0700 (PDT)
Received: by 10.223.107.135 with SMTP id b7mr499541fap.30.1242769946026; Tue,
 19 May 2009 14:52:26 -0700 (PDT)
Date: Tue, 19 May 2009 17:52:26 -0400
From: Chad Mynhier <cmynhier@gmail.com>
Subject: Re: Time Stamp Option for xxstat Commands Phase II [PSARC/2009/307
	Self Review]
In-reply-to: <20090519201013.GB1607@sun.com>
To: Sherry Moore <sherry.moore@sun.com>
Cc: James Carlson <james.d.carlson@sun.com>, Kais.Belgaied@sun.com,
        PSARC-ext@sun.com, Krishnendu.Sadhukhan@sun.com
Message-id: <3cf3989e0905191452y7f5131cfm74a0e8b5110227e8@mail.gmail.com>
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;        d=gmail.com;
 s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references
 :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding;
 bh=R94ZfZOt//CFeCGlqDETNSXNA+MI8StycnPWzCncbPE=;
 b=BRaJV2Zh+g2LQm36zI0hz62U1VOiMc/YnIq/QJ4h8gKuPRFG4VHi3wsNBScPTb67Z5
 JCLqsg+++Cnc8MsEMF474VijKDjqDznOxjYVAggHXhZKNHhuixx6wykDBd5IRSd8rSw6
 pugCQJWho6YnCXxoOabB6h7yJi9+ULtJNo6Hg=
DomainKey-Signature: a=rsa-sha1; c=nofws;        d=gmail.com; s=gamma;
 h=mime-version:in-reply-to:references:date:message-id:subject:from:to
 :cc:content-type:content-transfer-encoding;
 b=CzMqbV+6k5DgDB/8UH7XycpxZ8Htqm/yd/IJD6q+uMANBBGrUSWoXsXDt7QCbIal5p
 lTi9pKcYS6FyMh8O1cfbM2qUBa/mu+d9/S9aMzxXwfxOQyovRpGR+hLzrsR81iJenjNN
 Y7fzd8P/oeHCxYinAfiBVsK+O8Y1tLS5aO8ko=
X-PMX-Version: 5.4.1.325704
X-Brightmail-Tracker: AAAAAA==
X-Antispam: No, score=0.0/5.0, scanned in 0.073sec at (localhost [127.0.0.1])
	by smf-spamd v1.3.1 - http://smfs.sf.net/
References: <4A1075C5.6080509@Sun.COM> <20090515232125.GA2303@sun.com>
 <18961.16123.790092.456367@gargle.gargle.HOWL>
 <3cf3989e0905181312j7c8da790p13f1e882496548d9@mail.gmail.com>
 <3cf3989e0905191303ndc2a4f4h449ac1ffaf01503@mail.gmail.com>
 <20090519201013.GB1607@sun.com>
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by sac.sfbay.sun.com id n4JLrag0024916
Status: RO
Content-Length: 873

On Tue, May 19, 2009 at 4:10 PM, Sherry Moore <sherry.moore@sun.com> wrote:
>> Just to be clear, I'm adding these two ("dladm show-link -s -i" and
>> "flowadm show-flow -s -i") to the list of commands covered by this
>> case.  I've been told that there's no need to update the one-pager
>> itself and that this email thread is sufficient documentation.
>
> On second thought, how about you send me an updated one with the added
> commands, I will copy it to the materials directory for your ARC case.
> Once I have copied the file (and send you the link to the file), you
> can respond the mail stating that you will add those two commands, and
> the case file has been updated and can be found where.
>

Okay, the case file has been updated with these two commands.  It can
be found here:

http://arc.opensolaris.org/caselog/PSARC/2009/307/materials/case.final.txt

Chad


