linux.properties revision 1870:4aa2e64eff30
1#
2# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.
8#
9# This code is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12# version 2 for more details (a copy is included in the LICENSE file that
13# accompanied this code).
14#
15# You should have received a copy of the GNU General Public License version
16# 2 along with this work; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18#
19# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
22#
23
24config.execSuffix=
25config.getChildren.pattern=%p
26config.getChildren.app=ps
27config.getChildren.args=--no-headers -o pid --ppid %p
28################################################################################
29# process info to gather
30################################################################################
31onTimeout=\
32  native.pmap.normal native.pmap.everything \
33  native.files native.locks \
34  native.stack native.core
35################################################################################
36native.pattern=%p
37native.javaOnly=false
38native.args=%p
39
40native.pmap.app=pmap
41native.pmap.normal.args=-p %p
42native.pmap.everything.args=-XXp %p
43
44native.files.app=lsof
45native.files.args=-p %p
46
47native.locks.app=lslocks
48native.locks.args=-u --pid %p
49
50native.stack.app=gdb
51native.stack.args=--pid=%p\0-batch\0-ex\0thread apply all backtrace
52native.stack.args.delimiter=\0
53native.stack.params.repeat=6
54
55native.core.app=gcore
56native.core.args=-o ./core.%p %p
57native.core.params.timeout=3600000
58################################################################################
59# environment info to gather
60################################################################################
61environment=\
62  users.current users.logged users.last \
63  disk \
64  env \
65  system.dmesg system.sysctl \
66  process.top process.ps \
67  memory.free memory.vmstat.default memory.vmstat.statistics \
68        memory.vmstat.slabinfo memory.vmstat.disk \
69  files \
70  locks \
71  net.sockets net.statistics
72################################################################################
73users.current.app=id
74users.current.args=-a
75users.logged.app=who
76users.logged.args=-a
77users.last.app=last
78users.last.args=-10
79
80disk.app=df
81disk.args=-h
82
83env.app=env
84
85system.dmesg.app=dmesg
86system.sysctl.app=sysctl
87system.sysctl.args=-a
88
89process.top.app=top
90process.top.args=-b -n 1
91process.ps.app=ps
92process.ps.args=-Leo pid,pcpu,cputime,start,pmem,vsz,rssize,stackp,stat,sgi_p,wchan,user,args
93
94memory.free.app=free
95memory.free.args=-h
96memory.vmstat.app=vmstat
97memory.vmstat.default.args=3 3
98memory.vmstat.statistics.args=-s
99memory.vmstat.slabinfo.args=-m
100memory.vmstat.disk.args=-d
101
102files.app=lsof
103locks.app=lslocks
104locks.args=-u
105
106net.app=netstat
107net.sockets.args=-aeeopv
108net.statistics.args=-sv
109################################################################################
110
111