mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-18 17:58:55 +00:00
*-summary tools: Changes from the reviews. Tests for pt-mysql-summary not finished yet
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
plan 15
|
||||
plan 20
|
||||
|
||||
TMPDIR="$TEST_TMPDIR"
|
||||
PATH="$PATH:$PERCONA_TOOLKIT_SANDBOX/bin"
|
||||
@@ -28,10 +28,10 @@ wait
|
||||
|
||||
file_count=$(ls "$p" | wc -l)
|
||||
|
||||
is $file_count 12 "Creates the correct number of files (without --dump-schemas)"
|
||||
is $file_count 12 "Creates the correct number of files (without --databases)"
|
||||
|
||||
grep -v grep "$p/percona-toolkit-mysqld-instances" | awk '{print $2}' > "$TMPDIR/collect_mysqld_instances1.test"
|
||||
ps auxww 2>/dev/null | grep mysqld | grep -v grep | awk '{print $2}' > "$TMPDIR/collect_mysqld_instances2.test"
|
||||
awk '{print $1}' "$p/percona-toolkit-mysqld-instances" > "$TMPDIR/collect_mysqld_instances1.test"
|
||||
ps ww -p "$(_pidof mysqld | sed -e "s/ /,/g")" | awk '{print $1}' > "$TMPDIR/collect_mysqld_instances2.test"
|
||||
|
||||
no_diff \
|
||||
"$TMPDIR/collect_mysqld_instances1.test" \
|
||||
@@ -40,7 +40,7 @@ no_diff \
|
||||
|
||||
collect_mysqld_instances "$TMPDIR/collect_mysqld_instances3.test"
|
||||
|
||||
grep -v grep "$TMPDIR/collect_mysqld_instances3.test" | awk '{print $2}' > "$TMPDIR/collect_mysqld_instances4.test"
|
||||
awk '{print $1}' "$TMPDIR/collect_mysqld_instances3.test"> "$TMPDIR/collect_mysqld_instances4.test"
|
||||
|
||||
no_diff \
|
||||
"$TMPDIR/collect_mysqld_instances4.test" \
|
||||
@@ -127,3 +127,71 @@ if [ -n "$(get_var log_bin "$p/percona-toolkit-mysql-variables")" ]; then
|
||||
else
|
||||
skip 1 2 "no binlog"
|
||||
fi
|
||||
|
||||
# get_mysqldump_for
|
||||
|
||||
test_get_mysqldump_for () {
|
||||
local dir="$1"
|
||||
# Let's fake mysqldump
|
||||
|
||||
printf '#!/usr/bin/env bash\necho $@\n' > "$TMPDIR/mysqldump_fake.sh"
|
||||
chmod +x "$TMPDIR/mysqldump_fake.sh"
|
||||
local orig_mysqldump="$CMD_MYSQLDUMP"
|
||||
local CMD_MYSQLDUMP="$TMPDIR/mysqldump_fake.sh"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
--defaults-file=/tmp/12345/my.sandbox.cnf --no-data --skip-comments --skip-add-locks --skip-add-drop-table --compact --skip-lock-all-tables --skip-lock-tables --skip-set-charset --databases --all-databases
|
||||
EOF
|
||||
get_mysqldump_for "$dir/mysqldump_test_1" ''
|
||||
no_diff \
|
||||
"$dir/mysqldump_test_1" \
|
||||
"$TMPDIR/expected" \
|
||||
"get_mysqldump_for picks a name default"
|
||||
|
||||
get_mysqldump_for "$dir/mysqldump_test_2" '' '--all-databases'
|
||||
no_diff \
|
||||
"$dir/mysqldump_test_2" \
|
||||
"$TMPDIR/expected" \
|
||||
"..which is the same as if we explicitly set --all-databases"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
--defaults-file=/tmp/12345/my.sandbox.cnf --no-data --skip-comments --skip-add-locks --skip-add-drop-table --compact --skip-lock-all-tables --skip-lock-tables --skip-set-charset --databases a
|
||||
EOF
|
||||
get_mysqldump_for "$dir/mysqldump_test_3" '' 'a'
|
||||
no_diff \
|
||||
"$dir/mysqldump_test_3" \
|
||||
"$TMPDIR/expected" \
|
||||
"get_mysqldump_for: Explicitly setting a database works"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
--defaults-file=/tmp/12345/my.sandbox.cnf --no-data --skip-comments --skip-add-locks --skip-add-drop-table --compact --skip-lock-all-tables --skip-lock-tables --skip-set-charset --databases a b
|
||||
EOF
|
||||
get_mysqldump_for "$dir/mysqldump_test_4" '' 'a,b'
|
||||
no_diff \
|
||||
"$dir/mysqldump_test_4" \
|
||||
"$TMPDIR/expected" \
|
||||
"get_mysqldump_for: Two databases separated by a comma are interpreted correctly"
|
||||
|
||||
if [ -n "$orig_mysqldump" ]; then
|
||||
local CMD_MYSQLDUMP="$orig_mysqldump"
|
||||
$CMD_MYSQL $EXT_ARGV -ss -e 'CREATE DATABASE collect_mysql_databases_test1;' 1>/dev/null 2>&1
|
||||
$CMD_MYSQL $EXT_ARGV -ss -e 'CREATE DATABASE collect_mysql_databases_test2;' 1>/dev/null 2>&1
|
||||
|
||||
get_mysqldump_for "$dir/mysqldump_test_5" '' "collect_mysql_databases_test1,collect_mysql_databases_test2"
|
||||
|
||||
like \
|
||||
"$(cat $dir/mysqldump_test_5)" \
|
||||
'use `collect_mysql_databases_test1`.*use `collect_mysql_databases_test2`|use `collect_mysql_databases_test2`.*use `collect_mysql_databases_test1`' \
|
||||
"get_mysqldump_for dumps the dbs we request"
|
||||
|
||||
$CMD_MYSQL $EXT_ARGV -ss -e 'DROP DATABASE collect_mysql_databases_test1;'
|
||||
$CMD_MYSQL $EXT_ARGV -ss -e 'DROP DATABASE collect_mysql_databases_test2;'
|
||||
|
||||
else
|
||||
skip 1 1 "No mysqldump"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
mkdir "$TMPDIR/mysqldump"
|
||||
test_get_mysqldump_for "$TMPDIR/mysqldump"
|
||||
|
@@ -10,6 +10,7 @@ TOOL="pt-summary"
|
||||
. "$LIB_DIR/alt_cmds.sh"
|
||||
. "$LIB_DIR/parse_options.sh"
|
||||
. "$LIB_DIR/summary_common.sh"
|
||||
. "$LIB_DIR/parse_options.sh"
|
||||
. "$LIB_DIR/collect_system_info.sh"
|
||||
|
||||
# Prefix (with path) for the collect files.
|
||||
@@ -18,7 +19,8 @@ samples="$PERCONA_TOOLKIT_BRANCH/t/pt-summary/samples"
|
||||
|
||||
mkdir "$p"
|
||||
|
||||
OPT_SLEEP="1"
|
||||
parse_options "$BIN_DIR/pt-summary" --sleep 1
|
||||
|
||||
collect_system_data "$p"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
@@ -106,7 +108,7 @@ no_diff "$TMPDIR/got" "$TMPDIR/expected" "dmesg-007.txt"
|
||||
# raid_controller
|
||||
|
||||
rm "$TMPDIR/raid_controller_outfile.tmp" 2>/dev/null
|
||||
raid_controller "$TMPDIR/raid_controller_outfile.tmp" "" ""
|
||||
raid_controller "" "" > "$TMPDIR/raid_controller_outfile.tmp"
|
||||
|
||||
is \
|
||||
"$(get_var raid_controller "$TMPDIR/raid_controller_outfile.tmp")" \
|
||||
@@ -114,14 +116,14 @@ is \
|
||||
"raid_controller has a sane default"
|
||||
|
||||
rm "$TMPDIR/raid_controller_outfile.tmp" 2>/dev/null
|
||||
raid_controller "$TMPDIR/raid_controller_outfile.tmp" "" "$samples/lspci-001.txt"
|
||||
raid_controller "" "$samples/lspci-001.txt" > "$TMPDIR/raid_controller_outfile.tmp"
|
||||
is \
|
||||
"$(get_var raid_controller "$TMPDIR/raid_controller_outfile.tmp")" \
|
||||
"Fusion-MPT SAS" \
|
||||
"raid_controller gets the correct result from an lspci file"
|
||||
|
||||
rm "$TMPDIR/raid_controller_outfile.tmp" 2>/dev/null
|
||||
raid_controller "$TMPDIR/raid_controller_outfile.tmp" "$samples/dmesg-004.txt" ""
|
||||
raid_controller "$samples/dmesg-004.txt" "" > "$TMPDIR/raid_controller_outfile.tmp"
|
||||
is \
|
||||
"$(get_var raid_controller "$TMPDIR/raid_controller_outfile.tmp")" \
|
||||
"AACRAID" \
|
||||
@@ -157,6 +159,7 @@ test_linux_exclusive_collection () {
|
||||
local PT_SUMMARY_SKIP=""
|
||||
|
||||
mkdir "$dir/1"
|
||||
cp "$dir/sysctl" "$dir/1/"
|
||||
linux_exclusive_collection "$dir/1"
|
||||
|
||||
is \
|
||||
@@ -171,6 +174,7 @@ test_linux_exclusive_collection () {
|
||||
done
|
||||
|
||||
mkdir "$dir/2"
|
||||
cp "$dir/sysctl" "$dir/2/"
|
||||
linux_exclusive_collection "$dir/2"
|
||||
|
||||
is \
|
||||
@@ -192,6 +196,7 @@ platform="$(get_var platform "$p/summary")"
|
||||
|
||||
if [ "$platform" = "Linux" ]; then
|
||||
mkdir "$TMPDIR/linux_data"
|
||||
cp "$p/sysctl" "$TMPDIR/linux_data/sysctl"
|
||||
test_linux_exclusive_collection "$TMPDIR/linux_data"
|
||||
else
|
||||
skip 1 5 "Tests exclusive for Linux"
|
||||
@@ -249,7 +254,7 @@ forked_pid="$!"
|
||||
if [ -e /proc/$forked_pid/oom_adj ] \
|
||||
&& echo "-17" > /proc/$forked_pid/oom_adj 2>/dev/null; then
|
||||
|
||||
notable_processes_info "$TMPDIR/notable_procs"
|
||||
notable_processes_info > "$TMPDIR/notable_procs"
|
||||
like \
|
||||
"$(cat "$TMPDIR/notable_procs")" \
|
||||
"${forked_pid}\\s+-17" \
|
||||
@@ -274,7 +279,7 @@ test_dmidecode_system_info () {
|
||||
cmd_ok '! test -s "$dir/outfile"' "If dmidecode isn't found, produces nothing"
|
||||
|
||||
fake_command dmidecode '[$@]'
|
||||
dmidecode_system_info "$dir/outfile"
|
||||
dmidecode_system_info > "$dir/outfile"
|
||||
|
||||
cat <<EOF >> "$dir/expected"
|
||||
vendor [-s system-manufacturer]
|
||||
|
@@ -273,7 +273,8 @@ cat <<EOF > $TMPDIR/expected
|
||||
12345 /tmp/12345/data ? ? /tmp/12345/mysql_sandbox12345.sock
|
||||
12346 /tmp/12346/data ? ? /tmp/12346/mysql_sandbox12346.sock
|
||||
EOF
|
||||
parse_mysqld_instances "$samples/ps-mysqld-001.txt" > "$TMPDIR/got"
|
||||
touch "$TMPDIR/empty"
|
||||
parse_mysqld_instances "$samples/ps-mysqld-001.txt" "$TMPDIR/empty" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "ps-mysqld-001.txt"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
@@ -281,7 +282,7 @@ cat <<EOF > "$TMPDIR/expected"
|
||||
===== ========================== ==== === ======
|
||||
/var/lib/mysql ? ? /var/lib/mysql/mysql.sock
|
||||
EOF
|
||||
parse_mysqld_instances "$samples/ps-mysqld-002.txt" > "$TMPDIR/got"
|
||||
parse_mysqld_instances "$samples/ps-mysqld-002.txt" "$TMPDIR/empty" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "ps-mysqld-002.txt"
|
||||
|
||||
#parse_mysqld_instances
|
||||
@@ -290,7 +291,7 @@ cat <<EOF > $TMPDIR/expected
|
||||
===== ========================== ==== === ======
|
||||
3306 /mnt/data-store/mysql/data ? ? /tmp/mysql.sock
|
||||
EOF
|
||||
parse_mysqld_instances "$samples/ps-mysqld-003.txt" > "$TMPDIR/got"
|
||||
parse_mysqld_instances "$samples/ps-mysqld-003.txt" "$TMPDIR/empty" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "ps-mysqld-003.txt"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
@@ -303,7 +304,7 @@ cat <<EOF > "$TMPDIR/in"
|
||||
mysql 767 0.0 0.9 3492 1100 v0 I 3:01PM 0:00.07 /bin/sh /usr/local/bin/mysqld_safe --defaults-extra-file=/var/db/mysql/my.cnf --user=mysql --datadir=/var/db/mysql --pid-file=/var/db/mysql/freebsd.hsd1.va.comcast.net..pid
|
||||
mysql 818 0.0 17.4 45292 20584 v0 I 3:01PM 0:02.28 /usr/local/libexec/mysqld --defaults-extra-file=/var/db/mysql/my.cnf --basedir=/usr/local --datadir=/var/db/mysql --user=mysql --log-error=/var/db/mysql/freebsd.hsd1.va.comcast.net..err --pid-file=/var/db/mysql/freebsd.hsd1.va.comcast.net..pid
|
||||
EOF
|
||||
parse_mysqld_instances "$TMPDIR/in" > "$TMPDIR/got"
|
||||
parse_mysqld_instances "$TMPDIR/in" "$TMPDIR/empty" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "parse_mysqld_instances"
|
||||
|
||||
# ###########################################################################
|
||||
@@ -427,7 +428,7 @@ Uptime 90000 1 1
|
||||
Uptime_since_flush_status 90000 1
|
||||
EOF
|
||||
|
||||
join $samples/mysql-status-00{1,2}.txt > "$TMPDIR/in"
|
||||
join "$samples/mysql-status-001.txt" "$samples/mysql-status-002.txt" > "$TMPDIR/in"
|
||||
format_status_variables "$TMPDIR/in" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "format_status_variables"
|
||||
|
||||
@@ -435,7 +436,7 @@ no_diff "$TMPDIR/got" "$TMPDIR/expected" "format_status_variables"
|
||||
# format_overall_db_stats
|
||||
# ###########################################################################
|
||||
|
||||
cat <<EOF > $TMPDIR/expected
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
|
||||
Database Tables Views SPs Trigs Funcs FKs Partn
|
||||
mysql 17
|
||||
@@ -463,9 +464,8 @@ cat <<EOF > $TMPDIR/expected
|
||||
sakila 1 15 1 3 19 26 3 4 1 45 4 1 7 2
|
||||
|
||||
EOF
|
||||
format_overall_db_stats $samples/mysql-schema-001.txt > $TMPDIR/got
|
||||
no_diff $TMPDIR/got $TMPDIR/expected
|
||||
|
||||
format_overall_db_stats "$samples/mysql-schema-001.txt" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected"
|
||||
|
||||
cat <<EOF > $TMPDIR/expected
|
||||
|
||||
@@ -489,8 +489,11 @@ cat <<EOF > $TMPDIR/expected
|
||||
{chosen} 1 1
|
||||
|
||||
EOF
|
||||
format_overall_db_stats $samples/mysql-schema-002.txt > $TMPDIR/got
|
||||
no_diff $TMPDIR/got $TMPDIR/expected
|
||||
format_overall_db_stats "$samples/mysql-schema-002.txt" > "$TMPDIR/got"
|
||||
no_diff \
|
||||
"$TMPDIR/got" \
|
||||
"$TMPDIR/expected" \
|
||||
"format_overall_db_stats: single DB without CREATE DATABASE nor USE db defaults to {chosen}"
|
||||
|
||||
# ###########################################################################
|
||||
# format_innodb_status
|
||||
@@ -700,7 +703,8 @@ format_innodb_filters_test
|
||||
# ###########################################################################
|
||||
|
||||
OPT_SLEEP=1
|
||||
OPT_DUMP_SCHEMAS="mysql"
|
||||
OPT_DATABASES=""
|
||||
OPT_READ_SAMPLES=""
|
||||
NAME_VAL_LEN=25
|
||||
_NO_FALSE_NEGATIVES=1
|
||||
report_mysql_summary "$samples/tempdir" "percona-toolkit" | tail -n+3 > "$TMPDIR/got"
|
||||
|
@@ -1,9 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
plan 40
|
||||
plan 42
|
||||
|
||||
. "$LIB_DIR/alt_cmds.sh"
|
||||
. "$LIB_DIR/log_warn_die.sh"
|
||||
. "$LIB_DIR/parse_options.sh"
|
||||
. "$LIB_DIR/summary_common.sh"
|
||||
. "$LIB_DIR/report_formatting.sh"
|
||||
. "$LIB_DIR/report_system_info.sh"
|
||||
@@ -1154,7 +1155,7 @@ parse_arcconf "$samples/arcconf-003_900285.txt" > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "Bug 900285"
|
||||
|
||||
# report_system_summary
|
||||
PT_SUMMARY_SKIP=""
|
||||
parse_options "$BIN_DIR/pt-summary"
|
||||
|
||||
cat <<EOF > "$TMPDIR/expected"
|
||||
Hostname |
|
||||
@@ -1430,5 +1431,11 @@ No volume groups found
|
||||
# The End ####################################################
|
||||
EOF
|
||||
|
||||
report_system_summary "$samples/Linux/001" | tail -n +3 > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "report_system_summary works with samples from Linux"
|
||||
report_system_summary "$samples/Linux/001" | tail -n +3 > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$TMPDIR/expected" "report_system_summary works with samples from Linux (Ubuntu)"
|
||||
|
||||
report_system_summary "$samples/Linux/002" | tail -n +3 > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$samples/Linux/output_002.txt" "report_system_summary works with samples from Linux (CentOS 5.7, as root)"
|
||||
|
||||
report_system_summary "$samples/Linux/003" | tail -n +3 > "$TMPDIR/got"
|
||||
no_diff "$TMPDIR/got" "$samples/Linux/output_003.txt" "report_system_summary works with samples from Linux (CentOS 5.7, as non-root)"
|
||||
|
@@ -3,6 +3,7 @@
|
||||
===== ========================== ==== === ======
|
||||
3306 /var/lib/mysql ? ? /var/run/mysqld/mysqld.sock
|
||||
# MySQL Executable ###########################################
|
||||
Path to executable |
|
||||
Has symbols | Yes
|
||||
# Report On Port 3306 ########################################
|
||||
User | hugmeir@localhost
|
||||
@@ -124,7 +125,7 @@ Uptime 90000 1 1
|
||||
Response Time Hist. | Not Supported
|
||||
Smooth Flushing | Not Supported
|
||||
HandlerSocket NoSQL | Not Supported
|
||||
Fast Maatkit Hashes | Unknown
|
||||
Fast Hash UDFs | Unknown
|
||||
# Plugins ####################################################
|
||||
InnoDB compression | ACTIVE
|
||||
# Query cache ################################################
|
||||
@@ -133,6 +134,44 @@ Uptime 90000 1 1
|
||||
Usage | 0%
|
||||
HitToInsertRatio | 0%
|
||||
# Schema #####################################################
|
||||
|
||||
Database Tables Views SPs Trigs Funcs FKs Partn
|
||||
bluh 1
|
||||
meh 1
|
||||
mysql 22
|
||||
percona 1
|
||||
performance_schema
|
||||
|
||||
Database MyISAM InnoDB
|
||||
bluh 1
|
||||
meh 1
|
||||
mysql 22
|
||||
percona 1
|
||||
performance_schema
|
||||
|
||||
Database BTREE
|
||||
bluh
|
||||
meh
|
||||
mysql 31
|
||||
percona 2
|
||||
performance_schema
|
||||
|
||||
i t b b c t s e l d t s b v f
|
||||
n e i l h i e n o a i m i a l
|
||||
t x n o a m t u n t n a g r o
|
||||
t a b r e m g e y l i c a
|
||||
r s b t i l n h t
|
||||
y t l i n i t a
|
||||
a o m t n r
|
||||
m b e t
|
||||
p
|
||||
Database === === === === === === === === === === === === === === ===
|
||||
bluh 1 1 1 1
|
||||
meh 1
|
||||
mysql 19 2 4 63 8 6 77 5 4 3 3 8 1
|
||||
percona 3 2 4 1 1 1
|
||||
performance_schema
|
||||
|
||||
# Noteworthy Technologies ####################################
|
||||
SSL | No
|
||||
Explicit LOCK TABLES | No
|
||||
|
@@ -3,6 +3,7 @@
|
||||
===== ========================== ==== === ======
|
||||
3306 /var/lib/mysql ? ? /var/run/mysqld/mysqld.sock
|
||||
# MySQL Executable ###########################################
|
||||
Path to executable |
|
||||
Has symbols | No
|
||||
# Report On Port 3306 ########################################
|
||||
User |
|
||||
@@ -108,7 +109,7 @@ Uptime 90000 1 1
|
||||
Response Time Hist. | Not Supported
|
||||
Smooth Flushing | Not Supported
|
||||
HandlerSocket NoSQL | Not Supported
|
||||
Fast Maatkit Hashes | Unknown
|
||||
Fast Hash UDFs | Unknown
|
||||
# Plugins ####################################################
|
||||
InnoDB compression | Not found
|
||||
# Query cache ################################################
|
||||
|
396
t/pt-mysql-summary/samples/temp002/percona-toolkit-mysqldump
Normal file
396
t/pt-mysql-summary/samples/temp002/percona-toolkit-mysqldump
Normal file
@@ -0,0 +1,396 @@
|
||||
|
||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `bluh` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||
|
||||
USE `bluh`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `test` (
|
||||
`id` int(11) DEFAULT NULL,
|
||||
`t_test` text,
|
||||
`bi_test` binary(1) DEFAULT NULL,
|
||||
`blo_test` blob
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `meh` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||
|
||||
USE `meh`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `future``me` (
|
||||
`bluh` char(1) DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||
|
||||
USE `mysql`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `columns_priv` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `db` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
PRIMARY KEY (`Host`,`Db`,`User`),
|
||||
KEY `User` (`User`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `event` (
|
||||
`db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`name` char(64) NOT NULL DEFAULT '',
|
||||
`body` longblob NOT NULL,
|
||||
`definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`execute_at` datetime DEFAULT NULL,
|
||||
`interval_value` int(11) DEFAULT NULL,
|
||||
`interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`last_executed` datetime DEFAULT NULL,
|
||||
`starts` datetime DEFAULT NULL,
|
||||
`ends` datetime DEFAULT NULL,
|
||||
`status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED',
|
||||
`on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP',
|
||||
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '',
|
||||
`comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`originator` int(10) unsigned NOT NULL,
|
||||
`time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM',
|
||||
`character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
||||
`collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
||||
`db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
||||
`body_utf8` longblob,
|
||||
PRIMARY KEY (`db`,`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `func` (
|
||||
`name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`ret` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL,
|
||||
PRIMARY KEY (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `help_category` (
|
||||
`help_category_id` smallint(5) unsigned NOT NULL,
|
||||
`name` char(64) NOT NULL,
|
||||
`parent_category_id` smallint(5) unsigned DEFAULT NULL,
|
||||
`url` char(128) NOT NULL,
|
||||
PRIMARY KEY (`help_category_id`),
|
||||
UNIQUE KEY `name` (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `help_keyword` (
|
||||
`help_keyword_id` int(10) unsigned NOT NULL,
|
||||
`name` char(64) NOT NULL,
|
||||
PRIMARY KEY (`help_keyword_id`),
|
||||
UNIQUE KEY `name` (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `help_relation` (
|
||||
`help_topic_id` int(10) unsigned NOT NULL,
|
||||
`help_keyword_id` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`help_keyword_id`,`help_topic_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `help_topic` (
|
||||
`help_topic_id` int(10) unsigned NOT NULL,
|
||||
`name` char(64) NOT NULL,
|
||||
`help_category_id` smallint(5) unsigned NOT NULL,
|
||||
`description` text NOT NULL,
|
||||
`example` text NOT NULL,
|
||||
`url` char(128) NOT NULL,
|
||||
PRIMARY KEY (`help_topic_id`),
|
||||
UNIQUE KEY `name` (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `host` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
PRIMARY KEY (`Host`,`Db`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Host privileges; Merged with database privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `ndb_binlog_index` (
|
||||
`Position` bigint(20) unsigned NOT NULL,
|
||||
`File` varchar(255) NOT NULL,
|
||||
`epoch` bigint(20) unsigned NOT NULL,
|
||||
`inserts` bigint(20) unsigned NOT NULL,
|
||||
`updates` bigint(20) unsigned NOT NULL,
|
||||
`deletes` bigint(20) unsigned NOT NULL,
|
||||
`schemaops` bigint(20) unsigned NOT NULL,
|
||||
PRIMARY KEY (`epoch`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `plugin` (
|
||||
`name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='MySQL plugins';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `proc` (
|
||||
`db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`name` char(64) NOT NULL DEFAULT '',
|
||||
`type` enum('FUNCTION','PROCEDURE') NOT NULL,
|
||||
`specific_name` char(64) NOT NULL DEFAULT '',
|
||||
`language` enum('SQL') NOT NULL DEFAULT 'SQL',
|
||||
`sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL',
|
||||
`is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO',
|
||||
`security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER',
|
||||
`param_list` blob NOT NULL,
|
||||
`returns` longblob NOT NULL,
|
||||
`body` longblob NOT NULL,
|
||||
`definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '',
|
||||
`comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
||||
`collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
||||
`db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
|
||||
`body_utf8` longblob,
|
||||
PRIMARY KEY (`db`,`name`,`type`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `procs_priv` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '',
|
||||
`Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL,
|
||||
`Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '',
|
||||
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`),
|
||||
KEY `Grantor` (`Grantor`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `proxies_priv` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Proxied_user` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`With_grant` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`Host`,`User`,`Proxied_host`,`Proxied_user`),
|
||||
KEY `Grantor` (`Grantor`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User proxy privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `servers` (
|
||||
`Server_name` char(64) NOT NULL DEFAULT '',
|
||||
`Host` char(64) NOT NULL DEFAULT '',
|
||||
`Db` char(64) NOT NULL DEFAULT '',
|
||||
`Username` char(64) NOT NULL DEFAULT '',
|
||||
`Password` char(64) NOT NULL DEFAULT '',
|
||||
`Port` int(4) NOT NULL DEFAULT '0',
|
||||
`Socket` char(64) NOT NULL DEFAULT '',
|
||||
`Wrapper` char(64) NOT NULL DEFAULT '',
|
||||
`Owner` char(64) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`Server_name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL Foreign Servers table';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `tables_priv` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '',
|
||||
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`),
|
||||
KEY `Grantor` (`Grantor`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `time_zone` (
|
||||
`Time_zone_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`Use_leap_seconds` enum('Y','N') NOT NULL DEFAULT 'N',
|
||||
PRIMARY KEY (`Time_zone_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `time_zone_leap_second` (
|
||||
`Transition_time` bigint(20) NOT NULL,
|
||||
`Correction` int(11) NOT NULL,
|
||||
PRIMARY KEY (`Transition_time`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `time_zone_name` (
|
||||
`Name` char(64) NOT NULL,
|
||||
`Time_zone_id` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`Name`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `time_zone_transition` (
|
||||
`Time_zone_id` int(10) unsigned NOT NULL,
|
||||
`Transition_time` bigint(20) NOT NULL,
|
||||
`Transition_type_id` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`Time_zone_id`,`Transition_time`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `time_zone_transition_type` (
|
||||
`Time_zone_id` int(10) unsigned NOT NULL,
|
||||
`Transition_type_id` int(10) unsigned NOT NULL,
|
||||
`Offset` int(11) NOT NULL DEFAULT '0',
|
||||
`Is_DST` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`Abbreviation` char(8) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`Time_zone_id`,`Transition_type_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `user` (
|
||||
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
|
||||
`Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
|
||||
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
|
||||
`ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '',
|
||||
`ssl_cipher` blob NOT NULL,
|
||||
`x509_issuer` blob NOT NULL,
|
||||
`x509_subject` blob NOT NULL,
|
||||
`max_questions` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`max_updates` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`max_connections` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`max_user_connections` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`Host`,`User`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `percona` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||
|
||||
USE `percona`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `checksums` (
|
||||
`db` char(64) NOT NULL,
|
||||
`tbl` char(64) NOT NULL,
|
||||
`chunk` int(11) NOT NULL,
|
||||
`chunk_time` float DEFAULT NULL,
|
||||
`chunk_index` varchar(200) DEFAULT NULL,
|
||||
`lower_boundary` text,
|
||||
`upper_boundary` text,
|
||||
`this_crc` char(40) NOT NULL,
|
||||
`this_cnt` int(11) NOT NULL,
|
||||
`master_crc` char(40) DEFAULT NULL,
|
||||
`master_cnt` int(11) DEFAULT NULL,
|
||||
`ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`db`,`tbl`,`chunk`),
|
||||
KEY `ts_db_tbl` (`ts`,`db`,`tbl`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `performance_schema` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
||||
|
||||
USE `performance_schema`;
|
1
t/pt-summary/samples/BSD/freebsd_001/uptime
Normal file
1
t/pt-summary/samples/BSD/freebsd_001/uptime
Normal file
@@ -0,0 +1 @@
|
||||
57 mins, 1 user, load averages: 0.16, 0.03, 0.07
|
1
t/pt-summary/samples/BSD/netbsd_001/uptime
Normal file
1
t/pt-summary/samples/BSD/netbsd_001/uptime
Normal file
@@ -0,0 +1 @@
|
||||
43 mins, 2 users, load averages: 0.00, 0.00, 0.00
|
1
t/pt-summary/samples/BSD/openbsd_001/uptime
Normal file
1
t/pt-summary/samples/BSD/openbsd_001/uptime
Normal file
@@ -0,0 +1 @@
|
||||
1:14, 1 user, load averages: 0.44, 0.20, 0.16
|
1
t/pt-summary/samples/Linux/001/uptime
Normal file
1
t/pt-summary/samples/Linux/001/uptime
Normal file
@@ -0,0 +1 @@
|
||||
1 day, 15:14, 5 users, load average: 0.00, 0.06, 0.07
|
283
t/pt-summary/samples/Linux/002/dmesg_file
Normal file
283
t/pt-summary/samples/Linux/002/dmesg_file
Normal file
@@ -0,0 +1,283 @@
|
||||
Linux version 2.6.18-274.el5 (mockbuild@builder10.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-50)) #1 SMP Fri Jul 22 04:49:12 EDT 2011
|
||||
BIOS-provided physical RAM map:
|
||||
BIOS-e820: 0000000000010000 - 000000000009f400 (usable)
|
||||
BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
|
||||
BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
|
||||
BIOS-e820: 0000000000100000 - 000000003fffd000 (usable)
|
||||
BIOS-e820: 000000003fffd000 - 0000000040000000 (reserved)
|
||||
BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
|
||||
127MB HIGHMEM available.
|
||||
896MB LOWMEM available.
|
||||
found SMP MP-table at 000fdaf0
|
||||
Memory for crash kernel (0x0 to 0x0) notwithin permissible range
|
||||
disabling kdump
|
||||
Using x86 segment limits to approximate NX protection
|
||||
On node 0 totalpages: 262141
|
||||
DMA zone: 4096 pages, LIFO batch:0
|
||||
Normal zone: 225280 pages, LIFO batch:31
|
||||
HighMem zone: 32765 pages, LIFO batch:7
|
||||
DMI 2.4 present.
|
||||
DMI: Bochs Bochs, BIOS Bochs 01/01/2007
|
||||
Using APIC driver default
|
||||
ACPI: RSDP (v000 BOCHS ) @ 0x000fdaa0
|
||||
ACPI: RSDT (v001 BOCHS BXPCRSDT 0x00000001 BXPC 0x00000001) @ 0x3fffd6a0
|
||||
ACPI: FADT (v001 BOCHS BXPCFACP 0x00000001 BXPC 0x00000001) @ 0x3ffffe70
|
||||
ACPI: SSDT (v001 BOCHS BXPCSSDT 0x00000001 BXPC 0x00000001) @ 0x3fffd800
|
||||
ACPI: MADT (v001 BOCHS BXPCAPIC 0x00000001 BXPC 0x00000001) @ 0x3fffd720
|
||||
ACPI: HPET (v001 BOCHS BXPCHPET 0x00000001 BXPC 0x00000001) @ 0x3fffd6e0
|
||||
ACPI: DSDT (v001 BXPC BXDSDT 0x00000001 INTL 0x20100528) @ 0x00000000
|
||||
ACPI: PM-Timer IO Port: 0xb008
|
||||
ACPI: Local APIC address 0xfee00000
|
||||
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
|
||||
Processor #0 6:3 APIC version 17
|
||||
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
|
||||
IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
|
||||
ACPI: IRQ0 used by override.
|
||||
ACPI: IRQ2 used by override.
|
||||
ACPI: IRQ5 used by override.
|
||||
ACPI: IRQ9 used by override.
|
||||
ACPI: IRQ10 used by override.
|
||||
ACPI: IRQ11 used by override.
|
||||
Enabling APIC mode: Flat. Using 1 I/O APICs
|
||||
ACPI: HPET id: 0x8086a201 base: 0xfed00000
|
||||
Using ACPI (MADT) for SMP configuration information
|
||||
Allocating PCI resources starting at 50000000 (gap: 40000000:bffc0000)
|
||||
Detected 1662.701 MHz processor.
|
||||
Built 1 zonelists. Total pages: 262141
|
||||
Kernel command line: ro root=/dev/VolGroup00/LogVol00
|
||||
mapped APIC to ffffd000 (fee00000)
|
||||
mapped IOAPIC to ffffc000 (fec00000)
|
||||
Enabling fast FPU save and restore... done.
|
||||
Enabling unmasked SIMD FPU exception support... done.
|
||||
Initializing CPU#0
|
||||
CPU 0 irqstacks, hard=c076f000 soft=c074f000
|
||||
PID hash table entries: 4096 (order: 12, 16384 bytes)
|
||||
Console: colour VGA+ 80x25
|
||||
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
|
||||
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
|
||||
Memory: 1030768k/1048564k available (2196k kernel code, 16912k reserved, 914k data, 232k init, 131060k highmem)
|
||||
Checking if this processor honours the WP bit even in supervisor mode... Ok.
|
||||
hpet0: at MMIO 0xfed00000 (virtual 0xf8800000), IRQs 2, 8, 0
|
||||
hpet0: 3 64-bit timers, 100000000 Hz
|
||||
Using HPET for base-timer
|
||||
Calibrating delay loop (skipped), value calculated using timer frequency.. 3325.40 BogoMIPS (lpj=1662701)
|
||||
Security Framework v1.0.0 initialized
|
||||
SELinux: Initializing.
|
||||
SELinux: Starting in permissive mode
|
||||
selinux_register_security: Registering secondary module capability
|
||||
Capability LSM initialized as secondary
|
||||
Mount-cache hash table entries: 512
|
||||
CPU: After generic identify, caps: 0781abf9 00000000 00000000 00000000 80800001 00000000 00000000
|
||||
CPU: After vendor identify, caps: 0781abf9 00000000 00000000 00000000 80800001 00000000 00000000
|
||||
CPU: L1 I cache: 32K, L1 D cache: 32K
|
||||
CPU: L2 cache: 4096K
|
||||
CPU: After all inits, caps: 0781a3f9 00000000 00000000 00000040 80800001 00000000 00000000
|
||||
Checking 'hlt' instruction... OK.
|
||||
SMP alternatives: switching to UP code
|
||||
Freeing SMP alternatives: 14k freed
|
||||
ACPI: Core revision 20060707
|
||||
CPU0: Intel QEMU Virtual CPU version 0.14.1 stepping 03
|
||||
Total of 1 processors activated (3325.40 BogoMIPS).
|
||||
ENABLING IO-APIC IRQs
|
||||
..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
|
||||
Using local APIC timer interrupts.
|
||||
WARNING calibrate_APIC_clock: the APIC timer calibration may be wrong.
|
||||
Brought up 1 CPUs
|
||||
sizeof(vma)=84 bytes
|
||||
sizeof(page)=32 bytes
|
||||
sizeof(inode)=340 bytes
|
||||
sizeof(dentry)=136 bytes
|
||||
sizeof(ext3inode)=492 bytes
|
||||
sizeof(buffer_head)=52 bytes
|
||||
sizeof(skbuff)=176 bytes
|
||||
checking if image is initramfs... it is
|
||||
Freeing initrd memory: 3301k freed
|
||||
NET: Registered protocol family 16
|
||||
ACPI: bus type pci registered
|
||||
PCI: PCI BIOS revision 2.10 entry at 0xfc901, last bus=0
|
||||
PCI: Using configuration type 1
|
||||
Setting up standard PCI resources
|
||||
ACPI: Interpreter enabled
|
||||
ACPI: Using IOAPIC for interrupt routing
|
||||
ACPI: No dock devices found.
|
||||
ACPI: PCI Root Bridge [PCI0] (0000:00)
|
||||
PCI quirk: region b000-b03f claimed by PIIX4 ACPI
|
||||
PCI quirk: region b100-b10f claimed by PIIX4 SMB
|
||||
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
|
||||
ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
|
||||
ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
|
||||
ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
|
||||
ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
|
||||
ACPI: PCI Interrupt Link [LNKS] (IRQs 9) *0, disabled.
|
||||
Linux Plug and Play Support v0.97 (c) Adam Belay
|
||||
pnp: PnP ACPI init
|
||||
pnp: PnP ACPI: found 6 devices
|
||||
usbcore: registered new driver usbfs
|
||||
usbcore: registered new driver hub
|
||||
PCI: Using ACPI for IRQ routing
|
||||
PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
|
||||
NetLabel: Initializing
|
||||
NetLabel: domain hash size = 128
|
||||
NetLabel: protocols = UNLABELED CIPSOv4
|
||||
NetLabel: unlabeled traffic allowed by default
|
||||
NET: Registered protocol family 2
|
||||
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
|
||||
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
|
||||
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
|
||||
TCP: Hash tables configured (established 131072 bind 65536)
|
||||
TCP reno registered
|
||||
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
|
||||
apm: overridden by ACPI.
|
||||
audit: initializing netlink socket (disabled)
|
||||
type=2000 audit(1332831374.186:1): initialized
|
||||
highmem bounce pool size: 64 pages
|
||||
Total HugeTLB memory allocated, 0
|
||||
VFS: Disk quotas dquot_6.5.1
|
||||
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
|
||||
SELinux: Registering netfilter hooks
|
||||
Initializing Cryptographic API
|
||||
alg: No test for crc32c (crc32c-generic)
|
||||
ksign: Installing public key data
|
||||
Loading keyring
|
||||
- Added public key 19937CBFB67F4F76
|
||||
- User ID: CentOS (Kernel Module GPG key)
|
||||
io scheduler noop registered
|
||||
io scheduler anticipatory registered
|
||||
io scheduler deadline registered
|
||||
io scheduler cfq registered (default)
|
||||
Limiting direct PCI/PCI transfers.
|
||||
PCI: PIIX3: Enabling Passive Release on 0000:00:01.0
|
||||
Activating ISA DMA hang workarounds.
|
||||
Boot video device is 0000:00:02.0
|
||||
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
|
||||
Real Time Clock Driver v1.12ac
|
||||
hpet_resources: 0xfed00000 is busy
|
||||
Non-volatile memory driver v1.2
|
||||
Linux agpgart interface v0.101 (c) Dave Jones
|
||||
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
|
||||
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
|
||||
brd: module loaded
|
||||
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
|
||||
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
|
||||
PIIX3: IDE controller at PCI slot 0000:00:01.1
|
||||
PIIX3: chipset revision 0
|
||||
PIIX3: not 100% native mode: will probe irqs later
|
||||
PCI: Setting latency timer of device 0000:00:01.1 to 64
|
||||
ide0: BM-DMA at 0xc000-0xc007, BIOS settings: hda:pio, hdb:pio
|
||||
ide1: BM-DMA at 0xc008-0xc00f, BIOS settings: hdc:pio, hdd:pio
|
||||
Probing IDE interface ide0...
|
||||
hda: QEMU HARDDISK, ATA DISK drive
|
||||
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
|
||||
Probing IDE interface ide1...
|
||||
hdc: QEMU DVD-ROM, ATAPI CD/DVD-ROM drive
|
||||
ide1 at 0x170-0x177,0x376 on irq 15
|
||||
hda: max request size: 512KiB
|
||||
hda: 16777216 sectors (8589 MB) w/256KiB Cache, CHS=16383/255/63, (U)DMA
|
||||
hda: cache flushes supported
|
||||
hda: hda1 hda2
|
||||
ide-floppy driver 0.99.newide
|
||||
usbcore: registered new driver hiddev
|
||||
usbcore: registered new driver usbhid
|
||||
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
|
||||
PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
|
||||
serio: i8042 KBD port at 0x60,0x64 irq 1
|
||||
serio: i8042 AUX port at 0x60,0x64 irq 12
|
||||
mice: PS/2 mouse device common for all mice
|
||||
md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
|
||||
md: bitmap version 4.39
|
||||
TCP bic registered
|
||||
Initializing IPsec netlink socket
|
||||
NET: Registered protocol family 1
|
||||
NET: Registered protocol family 17
|
||||
Using IPI No-Shortcut mode
|
||||
Time: tsc clocksource has been installed.
|
||||
ACPI: (supports S3 S4 S5)
|
||||
Initalizing network drop monitor service
|
||||
Freeing unused kernel memory: 232k freed
|
||||
Write protecting the kernel read-only data: 415k
|
||||
input: AT Translated Set 2 keyboard as /class/input/input0
|
||||
input: ImExPS/2 Generic Explorer Mouse as /class/input/input1
|
||||
ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
|
||||
USB Universal Host Controller Interface driver v3.0
|
||||
ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
|
||||
ACPI: PCI Interrupt 0000:00:01.2[D] -> Link [LNKD] -> GSI 11 (level, high) -> IRQ 11
|
||||
PCI: Setting latency timer of device 0000:00:01.2 to 64
|
||||
uhci_hcd 0000:00:01.2: UHCI Host Controller
|
||||
uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
|
||||
uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c020
|
||||
usb usb1: configuration #1 chosen from 1 choice
|
||||
hub 1-0:1.0: USB hub found
|
||||
hub 1-0:1.0: 2 ports detected
|
||||
SCSI subsystem initialized
|
||||
libata version 3.00 loaded.
|
||||
device-mapper: uevent: version 1.0.3
|
||||
device-mapper: ioctl: 4.11.6-ioctl (2011-02-18) initialised: dm-devel@redhat.com
|
||||
device-mapper: dm-raid45: initialized v0.2594l
|
||||
EXT3-fs: INFO: recovery required on readonly filesystem.
|
||||
EXT3-fs: write access will be enabled during recovery.
|
||||
kjournald starting. Commit interval 5 seconds
|
||||
EXT3-fs: recovery complete.
|
||||
EXT3-fs: mounted filesystem with ordered data mode.
|
||||
type=1404 audit(1332831448.312:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
|
||||
security: 3 users, 6 roles, 2005 types, 267 bools, 1 sens, 1024 cats
|
||||
security: 61 classes, 80385 rules
|
||||
SELinux: Completing initialization.
|
||||
SELinux: Setting up existing superblocks.
|
||||
SELinux: initialized (dev dm-0, type ext3), uses xattr
|
||||
SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
|
||||
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
|
||||
SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
|
||||
SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
|
||||
SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
|
||||
SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses genfs_contexts
|
||||
SELinux: initialized (dev devpts, type devpts), uses transition SIDs
|
||||
SELinux: initialized (dev eventpollfs, type eventpollfs), uses task SIDs
|
||||
SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
|
||||
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
|
||||
SELinux: initialized (dev futexfs, type futexfs), uses genfs_contexts
|
||||
SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
|
||||
SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
|
||||
SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
|
||||
SELinux: initialized (dev cpuset, type cpuset), uses genfs_contexts
|
||||
SELinux: initialized (dev proc, type proc), uses genfs_contexts
|
||||
SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
|
||||
SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
|
||||
SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
|
||||
type=1403 audit(1332831475.505:3): policy loaded auid=4294967295 ses=4294967295
|
||||
hdc: ATAPI 4X CD-ROM drive, 512kB Cache, (U)DMA
|
||||
Uniform CD-ROM driver Revision: 3.20
|
||||
8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004)
|
||||
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
|
||||
ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKC] -> GSI 10 (level, high) -> IRQ 10
|
||||
eth0: RTL-8139C+ at 0xf8906000, 52:54:00:c2:70:1b, IRQ 10
|
||||
PCI: Setting latency timer of device 0000:00:03.0 to 64
|
||||
8139too Fast Ethernet driver 0.9.27
|
||||
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
|
||||
ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LNKA] -> GSI 10 (level, high) -> IRQ 10
|
||||
input: PC Speaker as /class/input/input2
|
||||
piix4_smbus 0000:00:01.3: Found 0000:00:01.3 device
|
||||
ACPI: PCI Interrupt 0000:00:04.0[A] -> Link [LNKD] -> GSI 11 (level, high) -> IRQ 11
|
||||
PCI: Setting latency timer of device 0000:00:04.0 to 64
|
||||
FDC 0 is a S82078B
|
||||
lp: driver loaded but no devices found
|
||||
ACPI: Power Button (FF) [PWRF]
|
||||
ACPI: Mapper loaded
|
||||
dell-wmi: No known WMI GUID found
|
||||
md: Autodetecting RAID arrays.
|
||||
md: autorun ...
|
||||
md: ... autorun DONE.
|
||||
device-mapper: multipath: version 1.0.6 loaded
|
||||
loop: loaded (max 8 devices)
|
||||
EXT3 FS on dm-0, internal journal
|
||||
kjournald starting. Commit interval 5 seconds
|
||||
EXT3 FS on hda1, internal journal
|
||||
EXT3-fs: mounted filesystem with ordered data mode.
|
||||
SELinux: initialized (dev hda1, type ext3), uses xattr
|
||||
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
|
||||
Adding 2097144k swap on /dev/VolGroup00/LogVol01. Priority:-1 extents:1 across:2097144k
|
||||
SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
|
34
t/pt-summary/samples/Linux/002/memory
Normal file
34
t/pt-summary/samples/Linux/002/memory
Normal file
@@ -0,0 +1,34 @@
|
||||
total used free shared buffers cached
|
||||
Mem: 1059586048 237105152 822480896 0 51216384 128176128
|
||||
-/+ buffers/cache: 57712640 1001873408
|
||||
Swap: 2147475456 0 2147475456
|
||||
MemTotal: 1034752 kB
|
||||
MemFree: 803204 kB
|
||||
Buffers: 50016 kB
|
||||
Cached: 125172 kB
|
||||
SwapCached: 0 kB
|
||||
Active: 85712 kB
|
||||
Inactive: 120804 kB
|
||||
HighTotal: 131060 kB
|
||||
HighFree: 240 kB
|
||||
LowTotal: 903692 kB
|
||||
LowFree: 802964 kB
|
||||
SwapTotal: 2097144 kB
|
||||
SwapFree: 2097144 kB
|
||||
Dirty: 152 kB
|
||||
Writeback: 0 kB
|
||||
AnonPages: 31348 kB
|
||||
Mapped: 8772 kB
|
||||
Slab: 15048 kB
|
||||
PageTables: 1308 kB
|
||||
NFS_Unstable: 0 kB
|
||||
Bounce: 0 kB
|
||||
CommitLimit: 2614520 kB
|
||||
Committed_AS: 139488 kB
|
||||
VmallocTotal: 114680 kB
|
||||
VmallocUsed: 6304 kB
|
||||
VmallocChunk: 108216 kB
|
||||
HugePages_Total: 0
|
||||
HugePages_Free: 0
|
||||
HugePages_Rsvd: 0
|
||||
Hugepagesize: 4096 kB
|
3
t/pt-summary/samples/Linux/002/mounted_fs
Normal file
3
t/pt-summary/samples/Linux/002/mounted_fs
Normal file
@@ -0,0 +1,3 @@
|
||||
/dev/hda1 99M 13M 82M 13% /boot on /boot type ext3 (rw)
|
||||
/dev/mapper/VolGroup00-LogVol00 5.7G 1.1G 4.4G 20% / on / type ext3 (rw)
|
||||
tmpfs 506M 0 506M 0% /dev/shm on /dev/shm type tmpfs (rw)
|
6
t/pt-summary/samples/Linux/002/netstat
Normal file
6
t/pt-summary/samples/Linux/002/netstat
Normal file
@@ -0,0 +1,6 @@
|
||||
Active Internet connections (servers and established)
|
||||
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
|
||||
tcp 0 0 0.0.0.0:966 0.0.0.0:* LISTEN 2056/rpc.statd
|
||||
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 2016/portmap
|
||||
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2358/sendmail: acce
|
||||
tcp 0 0 :::22 :::* LISTEN 2333/sshd
|
2
t/pt-summary/samples/Linux/002/notable_procs
Normal file
2
t/pt-summary/samples/Linux/002/notable_procs
Normal file
@@ -0,0 +1,2 @@
|
||||
PID OOM COMMAND
|
||||
2333 +0 sshd
|
9
t/pt-summary/samples/Linux/002/partitioning
Normal file
9
t/pt-summary/samples/Linux/002/partitioning
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
Disk /dev/hda: 8589 MB, 8589934592 bytes
|
||||
255 heads, 63 sectors/track, 1044 cylinders
|
||||
Units = cylinders of 16065 * 512 = 8225280 bytes
|
||||
|
||||
Device Boot Start End Blocks Id System
|
||||
/dev/hda1 * 1 13 104391 83 Linux
|
||||
/dev/hda2 14 1044 8281507+ 8e Linux LVM
|
19
t/pt-summary/samples/Linux/002/proc_cpuinfo_copy
Normal file
19
t/pt-summary/samples/Linux/002/proc_cpuinfo_copy
Normal file
@@ -0,0 +1,19 @@
|
||||
processor : 0
|
||||
vendor_id : GenuineIntel
|
||||
cpu family : 6
|
||||
model : 3
|
||||
model name : QEMU Virtual CPU version 0.14.1
|
||||
stepping : 3
|
||||
cpu MHz : 1662.701
|
||||
cache size : 4096 KB
|
||||
fdiv_bug : no
|
||||
hlt_bug : no
|
||||
f00f_bug : no
|
||||
coma_bug : no
|
||||
fpu : yes
|
||||
fpu_exception : yes
|
||||
cpuid level : 4
|
||||
wp : yes
|
||||
flags : fpu pse tsc msr pae mce cx8 apic pge cmov pat mmx fxsr sse sse2 up pni popcnt
|
||||
bogomips : 3325.40
|
||||
|
10
t/pt-summary/samples/Linux/002/processes
Normal file
10
t/pt-summary/samples/Linux/002/processes
Normal file
@@ -0,0 +1,10 @@
|
||||
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
||||
3443 root 17 0 2288 956 728 R 25.5 0.1 0:01.30 top
|
||||
2252 root 15 0 2060 684 604 S 1.3 0.1 0:09.03 hald-addon-stor
|
||||
2230 haldaemo 15 0 5836 3928 1700 S 0.7 0.4 0:32.54 hald
|
||||
1 root 15 0 2160 668 576 S 0.0 0.1 0:39.36 init
|
||||
2 root RT -5 0 0 0 S 0.0 0.0 0:00.00 migration/0
|
||||
3 root 34 19 0 0 0 S 0.0 0.0 0:00.01 ksoftirqd/0
|
||||
4 root RT -5 0 0 0 S 0.0 0.0 0:00.00 watchdog/0
|
||||
5 root 10 -5 0 0 0 S 0.0 0.0 0:01.77 events/0
|
||||
6 root 10 -5 0 0 0 S 0.0 0.0 0:00.26 khelper
|
0
t/pt-summary/samples/Linux/002/raid-controller
Normal file
0
t/pt-summary/samples/Linux/002/raid-controller
Normal file
23
t/pt-summary/samples/Linux/002/summary
Normal file
23
t/pt-summary/samples/Linux/002/summary
Normal file
@@ -0,0 +1,23 @@
|
||||
platform Linux
|
||||
hostname localhost.localdomain
|
||||
kernel 2.6.18-274.el5
|
||||
release CentOS release 5.7 (Final)
|
||||
CPU_ARCH 32-bit
|
||||
OS_ARCH 32-bit
|
||||
virt QEmu
|
||||
compiler GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-51).
|
||||
rss 66236416
|
||||
raid_controller No RAID controller detected
|
||||
threading NPTL 2.5
|
||||
getenforce No SELinux detected
|
||||
swappiness
|
||||
disks dm-0
|
||||
dm-1
|
||||
hda
|
||||
hdc
|
||||
md0
|
||||
internal::hda [cfq] 128
|
||||
internal::hdc [cfq] 128
|
||||
dentry-state 9392 7451 45 0 0 0
|
||||
file-nr 640 0 102187
|
||||
inode-nr 5431 148
|
0
t/pt-summary/samples/Linux/002/sysctl
Normal file
0
t/pt-summary/samples/Linux/002/sysctl
Normal file
1
t/pt-summary/samples/Linux/002/uptime
Normal file
1
t/pt-summary/samples/Linux/002/uptime
Normal file
@@ -0,0 +1 @@
|
||||
03:34:31 up 38 min, 1 user, load average: 1.60, 1.03, 1.37
|
7
t/pt-summary/samples/Linux/002/vmstat
Normal file
7
t/pt-summary/samples/Linux/002/vmstat
Normal file
@@ -0,0 +1,7 @@
|
||||
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
|
||||
r b swpd free buff cache si so bi bo in cs us sy id wa st
|
||||
2 0 0 802956 50016 125208 0 0 81 17 1006 56 48 24 27 1 0
|
||||
1 0 0 802956 50016 125212 0 0 0 0 1031 52 70 30 0 0 0
|
||||
1 0 0 802956 50016 125212 0 0 0 104 804 48 67 33 0 0 0
|
||||
1 0 0 802956 50016 125212 0 0 0 0 958 35 80 20 0 0 0
|
||||
1 0 0 802956 50016 125212 0 0 0 0 886 43 62 38 0 0 0
|
283
t/pt-summary/samples/Linux/003/dmesg_file
Normal file
283
t/pt-summary/samples/Linux/003/dmesg_file
Normal file
@@ -0,0 +1,283 @@
|
||||
Linux version 2.6.18-274.el5 (mockbuild@builder10.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-50)) #1 SMP Fri Jul 22 04:49:12 EDT 2011
|
||||
BIOS-provided physical RAM map:
|
||||
BIOS-e820: 0000000000010000 - 000000000009f400 (usable)
|
||||
BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
|
||||
BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
|
||||
BIOS-e820: 0000000000100000 - 000000003fffd000 (usable)
|
||||
BIOS-e820: 000000003fffd000 - 0000000040000000 (reserved)
|
||||
BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
|
||||
127MB HIGHMEM available.
|
||||
896MB LOWMEM available.
|
||||
found SMP MP-table at 000fdaf0
|
||||
Memory for crash kernel (0x0 to 0x0) notwithin permissible range
|
||||
disabling kdump
|
||||
Using x86 segment limits to approximate NX protection
|
||||
On node 0 totalpages: 262141
|
||||
DMA zone: 4096 pages, LIFO batch:0
|
||||
Normal zone: 225280 pages, LIFO batch:31
|
||||
HighMem zone: 32765 pages, LIFO batch:7
|
||||
DMI 2.4 present.
|
||||
DMI: Bochs Bochs, BIOS Bochs 01/01/2007
|
||||
Using APIC driver default
|
||||
ACPI: RSDP (v000 BOCHS ) @ 0x000fdaa0
|
||||
ACPI: RSDT (v001 BOCHS BXPCRSDT 0x00000001 BXPC 0x00000001) @ 0x3fffd6a0
|
||||
ACPI: FADT (v001 BOCHS BXPCFACP 0x00000001 BXPC 0x00000001) @ 0x3ffffe70
|
||||
ACPI: SSDT (v001 BOCHS BXPCSSDT 0x00000001 BXPC 0x00000001) @ 0x3fffd800
|
||||
ACPI: MADT (v001 BOCHS BXPCAPIC 0x00000001 BXPC 0x00000001) @ 0x3fffd720
|
||||
ACPI: HPET (v001 BOCHS BXPCHPET 0x00000001 BXPC 0x00000001) @ 0x3fffd6e0
|
||||
ACPI: DSDT (v001 BXPC BXDSDT 0x00000001 INTL 0x20100528) @ 0x00000000
|
||||
ACPI: PM-Timer IO Port: 0xb008
|
||||
ACPI: Local APIC address 0xfee00000
|
||||
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
|
||||
Processor #0 6:3 APIC version 17
|
||||
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
|
||||
IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
|
||||
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
|
||||
ACPI: IRQ0 used by override.
|
||||
ACPI: IRQ2 used by override.
|
||||
ACPI: IRQ5 used by override.
|
||||
ACPI: IRQ9 used by override.
|
||||
ACPI: IRQ10 used by override.
|
||||
ACPI: IRQ11 used by override.
|
||||
Enabling APIC mode: Flat. Using 1 I/O APICs
|
||||
ACPI: HPET id: 0x8086a201 base: 0xfed00000
|
||||
Using ACPI (MADT) for SMP configuration information
|
||||
Allocating PCI resources starting at 50000000 (gap: 40000000:bffc0000)
|
||||
Detected 1662.701 MHz processor.
|
||||
Built 1 zonelists. Total pages: 262141
|
||||
Kernel command line: ro root=/dev/VolGroup00/LogVol00
|
||||
mapped APIC to ffffd000 (fee00000)
|
||||
mapped IOAPIC to ffffc000 (fec00000)
|
||||
Enabling fast FPU save and restore... done.
|
||||
Enabling unmasked SIMD FPU exception support... done.
|
||||
Initializing CPU#0
|
||||
CPU 0 irqstacks, hard=c076f000 soft=c074f000
|
||||
PID hash table entries: 4096 (order: 12, 16384 bytes)
|
||||
Console: colour VGA+ 80x25
|
||||
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
|
||||
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
|
||||
Memory: 1030768k/1048564k available (2196k kernel code, 16912k reserved, 914k data, 232k init, 131060k highmem)
|
||||
Checking if this processor honours the WP bit even in supervisor mode... Ok.
|
||||
hpet0: at MMIO 0xfed00000 (virtual 0xf8800000), IRQs 2, 8, 0
|
||||
hpet0: 3 64-bit timers, 100000000 Hz
|
||||
Using HPET for base-timer
|
||||
Calibrating delay loop (skipped), value calculated using timer frequency.. 3325.40 BogoMIPS (lpj=1662701)
|
||||
Security Framework v1.0.0 initialized
|
||||
SELinux: Initializing.
|
||||
SELinux: Starting in permissive mode
|
||||
selinux_register_security: Registering secondary module capability
|
||||
Capability LSM initialized as secondary
|
||||
Mount-cache hash table entries: 512
|
||||
CPU: After generic identify, caps: 0781abf9 00000000 00000000 00000000 80800001 00000000 00000000
|
||||
CPU: After vendor identify, caps: 0781abf9 00000000 00000000 00000000 80800001 00000000 00000000
|
||||
CPU: L1 I cache: 32K, L1 D cache: 32K
|
||||
CPU: L2 cache: 4096K
|
||||
CPU: After all inits, caps: 0781a3f9 00000000 00000000 00000040 80800001 00000000 00000000
|
||||
Checking 'hlt' instruction... OK.
|
||||
SMP alternatives: switching to UP code
|
||||
Freeing SMP alternatives: 14k freed
|
||||
ACPI: Core revision 20060707
|
||||
CPU0: Intel QEMU Virtual CPU version 0.14.1 stepping 03
|
||||
Total of 1 processors activated (3325.40 BogoMIPS).
|
||||
ENABLING IO-APIC IRQs
|
||||
..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
|
||||
Using local APIC timer interrupts.
|
||||
WARNING calibrate_APIC_clock: the APIC timer calibration may be wrong.
|
||||
Brought up 1 CPUs
|
||||
sizeof(vma)=84 bytes
|
||||
sizeof(page)=32 bytes
|
||||
sizeof(inode)=340 bytes
|
||||
sizeof(dentry)=136 bytes
|
||||
sizeof(ext3inode)=492 bytes
|
||||
sizeof(buffer_head)=52 bytes
|
||||
sizeof(skbuff)=176 bytes
|
||||
checking if image is initramfs... it is
|
||||
Freeing initrd memory: 3301k freed
|
||||
NET: Registered protocol family 16
|
||||
ACPI: bus type pci registered
|
||||
PCI: PCI BIOS revision 2.10 entry at 0xfc901, last bus=0
|
||||
PCI: Using configuration type 1
|
||||
Setting up standard PCI resources
|
||||
ACPI: Interpreter enabled
|
||||
ACPI: Using IOAPIC for interrupt routing
|
||||
ACPI: No dock devices found.
|
||||
ACPI: PCI Root Bridge [PCI0] (0000:00)
|
||||
PCI quirk: region b000-b03f claimed by PIIX4 ACPI
|
||||
PCI quirk: region b100-b10f claimed by PIIX4 SMB
|
||||
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
|
||||
ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
|
||||
ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
|
||||
ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
|
||||
ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
|
||||
ACPI: PCI Interrupt Link [LNKS] (IRQs 9) *0, disabled.
|
||||
Linux Plug and Play Support v0.97 (c) Adam Belay
|
||||
pnp: PnP ACPI init
|
||||
pnp: PnP ACPI: found 6 devices
|
||||
usbcore: registered new driver usbfs
|
||||
usbcore: registered new driver hub
|
||||
PCI: Using ACPI for IRQ routing
|
||||
PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
|
||||
NetLabel: Initializing
|
||||
NetLabel: domain hash size = 128
|
||||
NetLabel: protocols = UNLABELED CIPSOv4
|
||||
NetLabel: unlabeled traffic allowed by default
|
||||
NET: Registered protocol family 2
|
||||
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
|
||||
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
|
||||
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
|
||||
TCP: Hash tables configured (established 131072 bind 65536)
|
||||
TCP reno registered
|
||||
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
|
||||
apm: overridden by ACPI.
|
||||
audit: initializing netlink socket (disabled)
|
||||
type=2000 audit(1332831374.186:1): initialized
|
||||
highmem bounce pool size: 64 pages
|
||||
Total HugeTLB memory allocated, 0
|
||||
VFS: Disk quotas dquot_6.5.1
|
||||
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
|
||||
SELinux: Registering netfilter hooks
|
||||
Initializing Cryptographic API
|
||||
alg: No test for crc32c (crc32c-generic)
|
||||
ksign: Installing public key data
|
||||
Loading keyring
|
||||
- Added public key 19937CBFB67F4F76
|
||||
- User ID: CentOS (Kernel Module GPG key)
|
||||
io scheduler noop registered
|
||||
io scheduler anticipatory registered
|
||||
io scheduler deadline registered
|
||||
io scheduler cfq registered (default)
|
||||
Limiting direct PCI/PCI transfers.
|
||||
PCI: PIIX3: Enabling Passive Release on 0000:00:01.0
|
||||
Activating ISA DMA hang workarounds.
|
||||
Boot video device is 0000:00:02.0
|
||||
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
|
||||
Real Time Clock Driver v1.12ac
|
||||
hpet_resources: 0xfed00000 is busy
|
||||
Non-volatile memory driver v1.2
|
||||
Linux agpgart interface v0.101 (c) Dave Jones
|
||||
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
|
||||
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
|
||||
brd: module loaded
|
||||
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
|
||||
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
|
||||
PIIX3: IDE controller at PCI slot 0000:00:01.1
|
||||
PIIX3: chipset revision 0
|
||||
PIIX3: not 100% native mode: will probe irqs later
|
||||
PCI: Setting latency timer of device 0000:00:01.1 to 64
|
||||
ide0: BM-DMA at 0xc000-0xc007, BIOS settings: hda:pio, hdb:pio
|
||||
ide1: BM-DMA at 0xc008-0xc00f, BIOS settings: hdc:pio, hdd:pio
|
||||
Probing IDE interface ide0...
|
||||
hda: QEMU HARDDISK, ATA DISK drive
|
||||
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
|
||||
Probing IDE interface ide1...
|
||||
hdc: QEMU DVD-ROM, ATAPI CD/DVD-ROM drive
|
||||
ide1 at 0x170-0x177,0x376 on irq 15
|
||||
hda: max request size: 512KiB
|
||||
hda: 16777216 sectors (8589 MB) w/256KiB Cache, CHS=16383/255/63, (U)DMA
|
||||
hda: cache flushes supported
|
||||
hda: hda1 hda2
|
||||
ide-floppy driver 0.99.newide
|
||||
usbcore: registered new driver hiddev
|
||||
usbcore: registered new driver usbhid
|
||||
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
|
||||
PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
|
||||
serio: i8042 KBD port at 0x60,0x64 irq 1
|
||||
serio: i8042 AUX port at 0x60,0x64 irq 12
|
||||
mice: PS/2 mouse device common for all mice
|
||||
md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
|
||||
md: bitmap version 4.39
|
||||
TCP bic registered
|
||||
Initializing IPsec netlink socket
|
||||
NET: Registered protocol family 1
|
||||
NET: Registered protocol family 17
|
||||
Using IPI No-Shortcut mode
|
||||
Time: tsc clocksource has been installed.
|
||||
ACPI: (supports S3 S4 S5)
|
||||
Initalizing network drop monitor service
|
||||
Freeing unused kernel memory: 232k freed
|
||||
Write protecting the kernel read-only data: 415k
|
||||
input: AT Translated Set 2 keyboard as /class/input/input0
|
||||
input: ImExPS/2 Generic Explorer Mouse as /class/input/input1
|
||||
ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
|
||||
USB Universal Host Controller Interface driver v3.0
|
||||
ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
|
||||
ACPI: PCI Interrupt 0000:00:01.2[D] -> Link [LNKD] -> GSI 11 (level, high) -> IRQ 11
|
||||
PCI: Setting latency timer of device 0000:00:01.2 to 64
|
||||
uhci_hcd 0000:00:01.2: UHCI Host Controller
|
||||
uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
|
||||
uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c020
|
||||
usb usb1: configuration #1 chosen from 1 choice
|
||||
hub 1-0:1.0: USB hub found
|
||||
hub 1-0:1.0: 2 ports detected
|
||||
SCSI subsystem initialized
|
||||
libata version 3.00 loaded.
|
||||
device-mapper: uevent: version 1.0.3
|
||||
device-mapper: ioctl: 4.11.6-ioctl (2011-02-18) initialised: dm-devel@redhat.com
|
||||
device-mapper: dm-raid45: initialized v0.2594l
|
||||
EXT3-fs: INFO: recovery required on readonly filesystem.
|
||||
EXT3-fs: write access will be enabled during recovery.
|
||||
kjournald starting. Commit interval 5 seconds
|
||||
EXT3-fs: recovery complete.
|
||||
EXT3-fs: mounted filesystem with ordered data mode.
|
||||
type=1404 audit(1332831448.312:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
|
||||
security: 3 users, 6 roles, 2005 types, 267 bools, 1 sens, 1024 cats
|
||||
security: 61 classes, 80385 rules
|
||||
SELinux: Completing initialization.
|
||||
SELinux: Setting up existing superblocks.
|
||||
SELinux: initialized (dev dm-0, type ext3), uses xattr
|
||||
SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
|
||||
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
|
||||
SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
|
||||
SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
|
||||
SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
|
||||
SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses genfs_contexts
|
||||
SELinux: initialized (dev devpts, type devpts), uses transition SIDs
|
||||
SELinux: initialized (dev eventpollfs, type eventpollfs), uses task SIDs
|
||||
SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
|
||||
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
|
||||
SELinux: initialized (dev futexfs, type futexfs), uses genfs_contexts
|
||||
SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
|
||||
SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
|
||||
SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
|
||||
SELinux: initialized (dev cpuset, type cpuset), uses genfs_contexts
|
||||
SELinux: initialized (dev proc, type proc), uses genfs_contexts
|
||||
SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
|
||||
SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
|
||||
SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
|
||||
type=1403 audit(1332831475.505:3): policy loaded auid=4294967295 ses=4294967295
|
||||
hdc: ATAPI 4X CD-ROM drive, 512kB Cache, (U)DMA
|
||||
Uniform CD-ROM driver Revision: 3.20
|
||||
8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004)
|
||||
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
|
||||
ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKC] -> GSI 10 (level, high) -> IRQ 10
|
||||
eth0: RTL-8139C+ at 0xf8906000, 52:54:00:c2:70:1b, IRQ 10
|
||||
PCI: Setting latency timer of device 0000:00:03.0 to 64
|
||||
8139too Fast Ethernet driver 0.9.27
|
||||
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
|
||||
ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LNKA] -> GSI 10 (level, high) -> IRQ 10
|
||||
input: PC Speaker as /class/input/input2
|
||||
piix4_smbus 0000:00:01.3: Found 0000:00:01.3 device
|
||||
ACPI: PCI Interrupt 0000:00:04.0[A] -> Link [LNKD] -> GSI 11 (level, high) -> IRQ 11
|
||||
PCI: Setting latency timer of device 0000:00:04.0 to 64
|
||||
FDC 0 is a S82078B
|
||||
lp: driver loaded but no devices found
|
||||
ACPI: Power Button (FF) [PWRF]
|
||||
ACPI: Mapper loaded
|
||||
dell-wmi: No known WMI GUID found
|
||||
md: Autodetecting RAID arrays.
|
||||
md: autorun ...
|
||||
md: ... autorun DONE.
|
||||
device-mapper: multipath: version 1.0.6 loaded
|
||||
loop: loaded (max 8 devices)
|
||||
EXT3 FS on dm-0, internal journal
|
||||
kjournald starting. Commit interval 5 seconds
|
||||
EXT3 FS on hda1, internal journal
|
||||
EXT3-fs: mounted filesystem with ordered data mode.
|
||||
SELinux: initialized (dev hda1, type ext3), uses xattr
|
||||
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
|
||||
Adding 2097144k swap on /dev/VolGroup00/LogVol01. Priority:-1 extents:1 across:2097144k
|
||||
SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
|
34
t/pt-summary/samples/Linux/003/memory
Normal file
34
t/pt-summary/samples/Linux/003/memory
Normal file
@@ -0,0 +1,34 @@
|
||||
total used free shared buffers cached
|
||||
Mem: 1059586048 236732416 822853632 0 51183616 127881216
|
||||
-/+ buffers/cache: 57667584 1001918464
|
||||
Swap: 2147475456 0 2147475456
|
||||
MemTotal: 1034752 kB
|
||||
MemFree: 803568 kB
|
||||
Buffers: 49984 kB
|
||||
Cached: 124884 kB
|
||||
SwapCached: 0 kB
|
||||
Active: 85200 kB
|
||||
Inactive: 121000 kB
|
||||
HighTotal: 131060 kB
|
||||
HighFree: 240 kB
|
||||
LowTotal: 903692 kB
|
||||
LowFree: 803328 kB
|
||||
SwapTotal: 2097144 kB
|
||||
SwapFree: 2097144 kB
|
||||
Dirty: 80 kB
|
||||
Writeback: 0 kB
|
||||
AnonPages: 31340 kB
|
||||
Mapped: 8792 kB
|
||||
Slab: 14944 kB
|
||||
PageTables: 1324 kB
|
||||
NFS_Unstable: 0 kB
|
||||
Bounce: 0 kB
|
||||
CommitLimit: 2614520 kB
|
||||
Committed_AS: 139488 kB
|
||||
VmallocTotal: 114680 kB
|
||||
VmallocUsed: 6304 kB
|
||||
VmallocChunk: 108216 kB
|
||||
HugePages_Total: 0
|
||||
HugePages_Free: 0
|
||||
HugePages_Rsvd: 0
|
||||
Hugepagesize: 4096 kB
|
3
t/pt-summary/samples/Linux/003/mounted_fs
Normal file
3
t/pt-summary/samples/Linux/003/mounted_fs
Normal file
@@ -0,0 +1,3 @@
|
||||
/dev/hda1 99M 13M 82M 13% /boot on /boot type ext3 (rw)
|
||||
/dev/mapper/VolGroup00-LogVol00 5.7G 1.1G 4.4G 20% / on / type ext3 (rw)
|
||||
tmpfs 506M 0 506M 0% /dev/shm on /dev/shm type tmpfs (rw)
|
6
t/pt-summary/samples/Linux/003/netstat
Normal file
6
t/pt-summary/samples/Linux/003/netstat
Normal file
@@ -0,0 +1,6 @@
|
||||
Active Internet connections (servers and established)
|
||||
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
|
||||
tcp 0 0 0.0.0.0:966 0.0.0.0:* LISTEN -
|
||||
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN -
|
||||
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN -
|
||||
tcp 0 0 :::22 :::* LISTEN -
|
2
t/pt-summary/samples/Linux/003/notable_procs
Normal file
2
t/pt-summary/samples/Linux/003/notable_procs
Normal file
@@ -0,0 +1,2 @@
|
||||
PID OOM COMMAND
|
||||
2333 +0 sshd
|
1
t/pt-summary/samples/Linux/003/partitioning
Normal file
1
t/pt-summary/samples/Linux/003/partitioning
Normal file
@@ -0,0 +1 @@
|
||||
|
19
t/pt-summary/samples/Linux/003/proc_cpuinfo_copy
Normal file
19
t/pt-summary/samples/Linux/003/proc_cpuinfo_copy
Normal file
@@ -0,0 +1,19 @@
|
||||
processor : 0
|
||||
vendor_id : GenuineIntel
|
||||
cpu family : 6
|
||||
model : 3
|
||||
model name : QEMU Virtual CPU version 0.14.1
|
||||
stepping : 3
|
||||
cpu MHz : 1662.701
|
||||
cache size : 4096 KB
|
||||
fdiv_bug : no
|
||||
hlt_bug : no
|
||||
f00f_bug : no
|
||||
coma_bug : no
|
||||
fpu : yes
|
||||
fpu_exception : yes
|
||||
cpuid level : 4
|
||||
wp : yes
|
||||
flags : fpu pse tsc msr pae mce cx8 apic pge cmov pat mmx fxsr sse sse2 up pni popcnt
|
||||
bogomips : 3325.40
|
||||
|
10
t/pt-summary/samples/Linux/003/processes
Normal file
10
t/pt-summary/samples/Linux/003/processes
Normal file
@@ -0,0 +1,10 @@
|
||||
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
||||
3000 hugmeir 17 0 2288 952 728 R 24.6 0.1 0:01.57 top
|
||||
2309 root 17 0 29432 1392 1068 S 2.2 0.1 0:01.20 automount
|
||||
381 root 10 -5 0 0 0 S 0.9 0.0 0:02.98 kjournald
|
||||
2199 root 25 0 12824 1320 596 S 0.4 0.1 0:10.88 pcscd
|
||||
1 root 15 0 2160 668 576 S 0.0 0.1 0:39.32 init
|
||||
2 root RT -5 0 0 0 S 0.0 0.0 0:00.00 migration/0
|
||||
3 root 34 19 0 0 0 S 0.0 0.0 0:00.01 ksoftirqd/0
|
||||
4 root RT -5 0 0 0 S 0.0 0.0 0:00.00 watchdog/0
|
||||
5 root 10 -5 0 0 0 S 0.0 0.0 0:01.63 events/0
|
0
t/pt-summary/samples/Linux/003/raid-controller
Normal file
0
t/pt-summary/samples/Linux/003/raid-controller
Normal file
23
t/pt-summary/samples/Linux/003/summary
Normal file
23
t/pt-summary/samples/Linux/003/summary
Normal file
@@ -0,0 +1,23 @@
|
||||
platform Linux
|
||||
hostname localhost.localdomain
|
||||
kernel 2.6.18-274.el5
|
||||
release CentOS release 5.7 (Final)
|
||||
CPU_ARCH 32-bit
|
||||
OS_ARCH 32-bit
|
||||
virt QEmu
|
||||
compiler GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-51).
|
||||
rss 66248704
|
||||
raid_controller No RAID controller detected
|
||||
threading NPTL 2.5
|
||||
getenforce No SELinux detected
|
||||
swappiness
|
||||
disks dm-0
|
||||
dm-1
|
||||
hda
|
||||
hdc
|
||||
md0
|
||||
internal::hda [cfq] 128
|
||||
internal::hdc [cfq] 128
|
||||
dentry-state 9175 7239 45 0 0 0
|
||||
file-nr 640 0 102187
|
||||
inode-nr 5259 148
|
0
t/pt-summary/samples/Linux/003/sysctl
Normal file
0
t/pt-summary/samples/Linux/003/sysctl
Normal file
1
t/pt-summary/samples/Linux/003/uptime
Normal file
1
t/pt-summary/samples/Linux/003/uptime
Normal file
@@ -0,0 +1 @@
|
||||
03:31:47 up 35 min, 1 user, load average: 1.10, 0.62, 1.31
|
7
t/pt-summary/samples/Linux/003/vmstat
Normal file
7
t/pt-summary/samples/Linux/003/vmstat
Normal file
@@ -0,0 +1,7 @@
|
||||
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
|
||||
r b swpd free buff cache si so bi bo in cs us sy id wa st
|
||||
1 0 0 803444 49984 124916 0 0 87 17 1006 57 47 23 28 1 0
|
||||
1 0 0 803444 49984 124940 0 0 0 104 992 59 75 25 0 0 0
|
||||
1 0 0 803444 49984 124940 0 0 0 0 839 35 73 27 0 0 0
|
||||
1 0 0 803444 49984 124940 0 0 0 0 903 35 78 22 0 0 0
|
||||
2 0 0 803444 49984 124940 0 0 0 0 722 22 78 22 0 0 0
|
76
t/pt-summary/samples/Linux/output_002.txt
Normal file
76
t/pt-summary/samples/Linux/output_002.txt
Normal file
@@ -0,0 +1,76 @@
|
||||
Hostname | localhost.localdomain
|
||||
Uptime | 03:34:31 up 38 min, 1 user, load average: 1.60, 1.03, 1.37
|
||||
Platform | Linux
|
||||
Release | CentOS release 5.7 (Final)
|
||||
Kernel | 2.6.18-274.el5
|
||||
Architecture | CPU = 32-bit, OS = 32-bit
|
||||
Threading | NPTL 2.5
|
||||
Compiler | GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-51).
|
||||
SELinux | No SELinux detected
|
||||
Virtualized | QEmu
|
||||
# Processor ##################################################
|
||||
Processors | physical = 1, cores = 0, virtual = 1, hyperthreading = no
|
||||
Speeds | 1x1662.701
|
||||
Models | 1xQEMU Virtual CPU version 0.14.1
|
||||
Caches | 1x4096 KB
|
||||
# Memory #####################################################
|
||||
Total | 1.0M
|
||||
Free | 784.4M
|
||||
Used | physical = 226.1M, swap allocated = 2.0G, swap used = 0.0, virtual = 226.1M
|
||||
Buffers | 48.8M
|
||||
Caches | 122.2M
|
||||
Dirty | 152 kB
|
||||
UsedRSS | 63.2M
|
||||
Swappiness |
|
||||
DirtyPolicy |
|
||||
# Mounted Filesystems ########################################
|
||||
Filesystem Size Used Type Opts Mountpoint
|
||||
/dev/hda1 99M 13% ext3 rw /boot
|
||||
/dev/mapper/VolGroup00-LogVol00 5.7G 20% ext3 rw /
|
||||
tmpfs 506M 0% tmpfs rw /dev/shm
|
||||
# Disk Schedulers And Queue Size #############################
|
||||
dm-0 |
|
||||
# Disk Partioning ############################################
|
||||
Device Type Start End Size
|
||||
============ ==== ========== ========== ==================
|
||||
/dev/hda Disk 8589934592
|
||||
/dev/hda1 Part 1 13 98703360
|
||||
/dev/hda2 Part 14 1044 8472038400
|
||||
# Kernel Inode State #########################################
|
||||
dentry-state | 9392 7451 45 0 0 0
|
||||
file-nr | 640 0 102187
|
||||
inode-nr | 5431 148
|
||||
# LVM Volumes ################################################
|
||||
Cannot execute 'lvs'
|
||||
# RAID Controller ############################################
|
||||
Controller | No RAID controller detected
|
||||
# Network Config #############################################
|
||||
# Network Connections ########################################
|
||||
Connections from remote IP addresses
|
||||
Connections to local IP addresses
|
||||
Connections to top 10 local ports
|
||||
States of connections
|
||||
LISTEN 4
|
||||
# Top Processes ##############################################
|
||||
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
||||
3443 root 17 0 2288 956 728 R 25.5 0.1 0:01.30 top
|
||||
2252 root 15 0 2060 684 604 S 1.3 0.1 0:09.03 hald-addon-stor
|
||||
2230 haldaemo 15 0 5836 3928 1700 S 0.7 0.4 0:32.54 hald
|
||||
1 root 15 0 2160 668 576 S 0.0 0.1 0:39.36 init
|
||||
2 root RT -5 0 0 0 S 0.0 0.0 0:00.00 migration/0
|
||||
3 root 34 19 0 0 0 S 0.0 0.0 0:00.01 ksoftirqd/0
|
||||
4 root RT -5 0 0 0 S 0.0 0.0 0:00.00 watchdog/0
|
||||
5 root 10 -5 0 0 0 S 0.0 0.0 0:01.77 events/0
|
||||
6 root 10 -5 0 0 0 S 0.0 0.0 0:00.26 khelper
|
||||
# Notable Processes ##########################################
|
||||
PID OOM COMMAND
|
||||
2333 +0 sshd
|
||||
# Simplified and fuzzy rounded vmstat (wait please) ##########
|
||||
procs ---swap-- -----io---- ---system---- --------cpu--------
|
||||
r b si so bi bo ir cs us sy il wa st
|
||||
2 0 0 0 80 15 1000 60 48 24 27 1 0
|
||||
1 0 0 0 0 0 1000 50 70 30 0 0 0
|
||||
1 0 0 0 0 100 800 50 67 33 0 0 0
|
||||
1 0 0 0 0 0 1000 35 80 20 0 0 0
|
||||
1 0 0 0 0 0 900 45 62 38 0 0 0
|
||||
# The End ####################################################
|
73
t/pt-summary/samples/Linux/output_003.txt
Normal file
73
t/pt-summary/samples/Linux/output_003.txt
Normal file
@@ -0,0 +1,73 @@
|
||||
Hostname | localhost.localdomain
|
||||
Uptime | 03:31:47 up 35 min, 1 user, load average: 1.10, 0.62, 1.31
|
||||
Platform | Linux
|
||||
Release | CentOS release 5.7 (Final)
|
||||
Kernel | 2.6.18-274.el5
|
||||
Architecture | CPU = 32-bit, OS = 32-bit
|
||||
Threading | NPTL 2.5
|
||||
Compiler | GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-51).
|
||||
SELinux | No SELinux detected
|
||||
Virtualized | QEmu
|
||||
# Processor ##################################################
|
||||
Processors | physical = 1, cores = 0, virtual = 1, hyperthreading = no
|
||||
Speeds | 1x1662.701
|
||||
Models | 1xQEMU Virtual CPU version 0.14.1
|
||||
Caches | 1x4096 KB
|
||||
# Memory #####################################################
|
||||
Total | 1.0M
|
||||
Free | 784.7M
|
||||
Used | physical = 225.8M, swap allocated = 2.0G, swap used = 0.0, virtual = 225.8M
|
||||
Buffers | 48.8M
|
||||
Caches | 122.0M
|
||||
Dirty | 80 kB
|
||||
UsedRSS | 63.2M
|
||||
Swappiness |
|
||||
DirtyPolicy |
|
||||
# Mounted Filesystems ########################################
|
||||
Filesystem Size Used Type Opts Mountpoint
|
||||
/dev/hda1 99M 13% ext3 rw /boot
|
||||
/dev/mapper/VolGroup00-LogVol00 5.7G 20% ext3 rw /
|
||||
tmpfs 506M 0% tmpfs rw /dev/shm
|
||||
# Disk Schedulers And Queue Size #############################
|
||||
dm-0 |
|
||||
# Disk Partioning ############################################
|
||||
Device Type Start End Size
|
||||
============ ==== ========== ========== ==================
|
||||
# Kernel Inode State #########################################
|
||||
dentry-state | 9175 7239 45 0 0 0
|
||||
file-nr | 640 0 102187
|
||||
inode-nr | 5259 148
|
||||
# LVM Volumes ################################################
|
||||
Cannot execute 'lvs'
|
||||
# RAID Controller ############################################
|
||||
Controller | No RAID controller detected
|
||||
# Network Config #############################################
|
||||
# Network Connections ########################################
|
||||
Connections from remote IP addresses
|
||||
Connections to local IP addresses
|
||||
Connections to top 10 local ports
|
||||
States of connections
|
||||
LISTEN 4
|
||||
# Top Processes ##############################################
|
||||
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
||||
3000 hugmeir 17 0 2288 952 728 R 24.6 0.1 0:01.57 top
|
||||
2309 root 17 0 29432 1392 1068 S 2.2 0.1 0:01.20 automount
|
||||
381 root 10 -5 0 0 0 S 0.9 0.0 0:02.98 kjournald
|
||||
2199 root 25 0 12824 1320 596 S 0.4 0.1 0:10.88 pcscd
|
||||
1 root 15 0 2160 668 576 S 0.0 0.1 0:39.32 init
|
||||
2 root RT -5 0 0 0 S 0.0 0.0 0:00.00 migration/0
|
||||
3 root 34 19 0 0 0 S 0.0 0.0 0:00.01 ksoftirqd/0
|
||||
4 root RT -5 0 0 0 S 0.0 0.0 0:00.00 watchdog/0
|
||||
5 root 10 -5 0 0 0 S 0.0 0.0 0:01.63 events/0
|
||||
# Notable Processes ##########################################
|
||||
PID OOM COMMAND
|
||||
2333 +0 sshd
|
||||
# Simplified and fuzzy rounded vmstat (wait please) ##########
|
||||
procs ---swap-- -----io---- ---system---- --------cpu--------
|
||||
r b si so bi bo ir cs us sy il wa st
|
||||
1 0 0 0 90 15 1000 60 47 23 28 1 0
|
||||
1 0 0 0 0 100 1000 60 75 25 0 0 0
|
||||
1 0 0 0 0 0 800 35 73 27 0 0 0
|
||||
1 0 0 0 0 0 900 35 78 22 0 0 0
|
||||
2 0 0 0 0 0 700 20 78 22 0 0 0
|
||||
# The End ####################################################
|
Reference in New Issue
Block a user