1#!/usr/sbin/dtrace -s
2/*
3 * pgpginbypid.d - pages paged in by PID.
4 *                 Writen using DTrace (Solaris 10 3/05).
5 *
6 * 20-Apr-2006, ver 1.01
7 *
8 * USAGE:	pgpginbypid.d		# hit Ctrl-C to end sample
9 *
10 * FIELDS:
11 *		PID		process ID
12 * 		CMD		process name
13 *		PAGES		number of pages paged in
14 *
15 * This is based on a script from DExplorer.
16 *
17 * COPYRIGHT: Copyright (c) 2005, 2006 Brendan Gregg.
18 *
19 * CDDL HEADER START
20 *
21 *  The contents of this file are subject to the terms of the
22 *  Common Development and Distribution License, Version 1.0 only
23 *  (the "License").  You may not use this file except in compliance
24 *  with the License.
25 *
26 *  You can obtain a copy of the license at Docs/cddl1.txt
27 *  or http://www.opensolaris.org/os/licensing.
28 *  See the License for the specific language governing permissions
29 *  and limitations under the License.
30 *
31 * CDDL HEADER END
32 *
33 * 28-Jun-2005	Brendan Gregg	Created this.
34 */
35
36#pragma D option quiet
37
38dtrace:::BEGIN
39{
40	printf("Tracing... Hit Ctrl-C to end.\n");
41}
42
43vminfo:::pgpgin
44{
45	@pg[pid, execname] = sum(arg0);
46}
47
48dtrace:::END
49{
50	printf("%6s %-16s %16s\n", "PID", "CMD", "PAGES");
51	printa("%6d %-16s %@16d\n", @pg);
52}
53