pqd: Stop reporting apdex scores

This commit is contained in:
Brian Fraser
2013-01-11 13:20:39 -03:00
parent e925a239ff
commit 944b2039d3
119 changed files with 439 additions and 604 deletions

View File

@@ -5444,15 +5444,6 @@ sub calculate_statistical_metrics {
$classes->{$class}->{$attrib}->{all},
$classes->{$class}->{$attrib}
);
if ( $args{apdex_t} && $attrib eq 'Query_time' ) {
$class_metrics->{$class}->{$attrib}->{apdex_t} = $args{apdex_t};
$class_metrics->{$class}->{$attrib}->{apdex}
= $self->calculate_apdex(
t => $args{apdex_t},
samples => $classes->{$class}->{$attrib}->{all},
);
}
}
}
}
@@ -5577,9 +5568,6 @@ sub metrics {
median => $metrics->{classes}->{$where}->{$attrib}->{median} || 0,
pct_95 => $metrics->{classes}->{$where}->{$attrib}->{pct_95} || 0,
stddev => $metrics->{classes}->{$where}->{$attrib}->{stddev} || 0,
apdex_t => $metrics->{classes}->{$where}->{$attrib}->{apdex_t},
apdex => $metrics->{classes}->{$where}->{$attrib}->{apdex},
};
}
@@ -5895,51 +5883,6 @@ sub _deep_copy_attrib_vals {
return $copy;
}
sub calculate_apdex {
my ( $self, %args ) = @_;
my @required_args = qw(t samples);
foreach my $arg ( @required_args ) {
die "I need a $arg argument" unless $args{$arg};
}
my ($t, $samples) = @args{@required_args};
if ( $t <= 0 ) {
die "Invalid target threshold (T): $t. T must be greater than zero";
}
my $f = 4 * $t;
PTDEBUG && _d("Apdex T =", $t, "F =", $f);
my $satisfied = 0;
my $tolerating = 0;
my $frustrated = 0; # just for debug output
my $n_samples = 0;
BUCKET:
for my $bucket ( keys %$samples ) {
my $n_responses = $samples->{$bucket};
my $response_time = $buck_vals[$bucket];
if ( $response_time <= $t ) {
$satisfied += $n_responses;
}
elsif ( $response_time <= $f ) {
$tolerating += $n_responses;
}
else {
$frustrated += $n_responses;
}
$n_samples += $n_responses;
}
my $apdex = sprintf('%.2f', ($satisfied + ($tolerating / 2)) / $n_samples);
PTDEBUG && _d($n_samples, "samples,", $satisfied, "satisfied,",
$tolerating, "tolerating,", $frustrated, "frustrated, Apdex score:",
$apdex);
return $apdex;
}
sub _get_value {
my ( $self, %args ) = @_;
my ($event, $attrib, $alts) = @args{qw(event attribute alternates)};
@@ -6751,10 +6694,7 @@ sub event_report {
{
my $query_time = $ea->metrics(where => $item, attrib => 'Query_time');
push @result,
sprintf("# Scores: Apdex = %s [%3.1f]%s, V/M = %.2f",
(defined $query_time->{apdex} ? "$query_time->{apdex}" : "NS"),
($query_time->{apdex_t} || 0),
($query_time->{cnt} < 100 ? "*" : ""),
sprintf("# Scores: V/M = %.2f",
($query_time->{stddev}**2 / ($query_time->{avg} || 1)),
);
}
@@ -7017,7 +6957,6 @@ sub profile {
$qr->distill($samp_query, %{$args{distill_args}}) : $item,
id => $groupby eq 'fingerprint' ? make_checksum($item) : '',
vmr => ($query_time->{stddev}**2) / ($query_time->{avg} || 1),
apdex => defined $query_time->{apdex} ? $query_time->{apdex} : "NS",
);
if ( $o->get('explain') && $samp_query ) {
@@ -7048,7 +6987,6 @@ sub profile {
{ name => 'Response time', right_justify => 1, },
{ name => 'Calls', right_justify => 1, },
{ name => 'R/Call', right_justify => 1, },
{ name => 'Apdx', right_justify => 1, width => 4, },
{ name => 'V/M', right_justify => 1, width => 5, },
( $o->get('explain') ? { name => 'EXPLAIN' } : () ),
{ name => 'Item', },
@@ -7066,7 +7004,6 @@ sub profile {
"$rt $rtp",
$item->{cnt},
$rc,
$item->{apdex},
$vmr,
( $o->get('explain') ? $item->{explain_sparkline} || "" : () ),
$item->{sample},
@@ -7094,7 +7031,6 @@ sub profile {
"$rt $rtp",
$misc->{cnt},
$rc,
'NS', # Apdex is not meaningful here
'0.0', # variance-to-mean ratio is not meaningful here
( $o->get('explain') ? "MISC" : () ),
"<".scalar @$other." ITEMS>",
@@ -13223,9 +13159,6 @@ sub main {
}
}
if ( $o->get('apdex-threshold') <= 0 ) {
$o->save_error("Apdex threshold must be a positive decimal value");
}
if ( my $patterns = $o->get('embedded-attributes') ) {
$o->save_error("--embedded-attributes should be passed two "
. "comma-separated patterns, got " . scalar(@$patterns) )
@@ -14389,9 +14322,7 @@ sub print_reports {
for my $i ( 0..$#groupby ) {
if ( $o->get('report') || $qv ) {
$eas->[$i]->calculate_statistical_metrics(
apdex_t => $o->get('apdex-threshold'),
);
$eas->[$i]->calculate_statistical_metrics();
}
my ($orderby_attrib, $orderby_func) = split(/:/, $orderby[$i]);
@@ -14997,7 +14928,6 @@ that follows. It contains the following columns:
Response time The total response time, and percentage of overall total
Calls The number of times this query was executed
R/Call The mean response time per execution
Apdx The Apdex score; see --apdex-threshold for details
V/M The Variance-to-mean ratio of response time
EXPLAIN If --explain was specified, a sparkline; see --explain
Item The distilled query
@@ -15297,19 +15227,6 @@ L<"SYNOPSIS"> and usage information for details.
=over
=item --apdex-threshold
type: float; default: 1.0
Set Apdex target threshold (T) for query response time. The Application
Performance Index (Apdex) Technical Specification V1.1 defines T as "a
positive decimal value in seconds, having no more than two significant digits
of granularity." This value only applies to query response time (Query_time).
Options can be abbreviated so specifying C<--apdex-t> also works.
See L<http://www.apdex.org/>.
=item --ask-pass
Prompt for a password when connecting to MySQL.

View File

@@ -542,15 +542,12 @@ sub event_report {
. ($args{reason} eq 'top' ? '--limit.' : '--outliers.');
}
# Third line: Apdex and variance-to-mean (V/M) ratio, like:
# Scores: Apdex = 0.93 [1.0], V/M = 1.5
# Third line: Variance-to-mean (V/M) ratio, like:
# Scores: V/M = 1.5
{
my $query_time = $ea->metrics(where => $item, attrib => 'Query_time');
push @result,
sprintf("# Scores: Apdex = %s [%3.1f]%s, V/M = %.2f",
(defined $query_time->{apdex} ? "$query_time->{apdex}" : "NS"),
($query_time->{apdex_t} || 0),
($query_time->{cnt} < 100 ? "*" : ""),
sprintf("# Scores: V/M = %.2f",
($query_time->{stddev}**2 / ($query_time->{avg} || 1)),
);
}
@@ -874,7 +871,6 @@ sub profile {
$qr->distill($samp_query, %{$args{distill_args}}) : $item,
id => $groupby eq 'fingerprint' ? make_checksum($item) : '',
vmr => ($query_time->{stddev}**2) / ($query_time->{avg} || 1),
apdex => defined $query_time->{apdex} ? $query_time->{apdex} : "NS",
);
# Get EXPLAIN sparkline if --explain.
@@ -906,7 +902,6 @@ sub profile {
{ name => 'Response time', right_justify => 1, },
{ name => 'Calls', right_justify => 1, },
{ name => 'R/Call', right_justify => 1, },
{ name => 'Apdx', right_justify => 1, width => 4, },
{ name => 'V/M', right_justify => 1, width => 5, },
( $o->get('explain') ? { name => 'EXPLAIN' } : () ),
{ name => 'Item', },
@@ -924,7 +919,6 @@ sub profile {
"$rt $rtp",
$item->{cnt},
$rc,
$item->{apdex},
$vmr,
( $o->get('explain') ? $item->{explain_sparkline} || "" : () ),
$item->{sample},
@@ -954,7 +948,6 @@ sub profile {
"$rt $rtp",
$misc->{cnt},
$rc,
'NS', # Apdex is not meaningful here
'0.0', # variance-to-mean ratio is not meaningful here
( $o->get('explain') ? "MISC" : () ),
"<".scalar @$other." ITEMS>",

View File

@@ -7,7 +7,7 @@
# Lock time 1ms 1ms 1ms 1ms 1ms 0 1ms
# Query 1: 0 QPS, 0x concurrency, ID 0x5796997451B1FA1D at byte 123 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
@@ -35,6 +35,6 @@
select col from tbl where id=42\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x5796997451B1FA1D 1.0007 100.0% 1 1.0007 1.00 0.00 SELECT tbl
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x5796997451B1FA1D 1.0007 100.0% 1 1.0007 0.00 SELECT tbl

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x3F79759E7FA2F117 at byte 1106 _____
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-12-08 09:23:49.637892
# Attribute pct total min max avg 95% stddev median
@@ -31,7 +31,7 @@ EXECUTE SELECT i FROM d.t WHERE i="3"\G
SELECT i FROM d.t WHERE i="3"\G
# Query 2: 0 QPS, 0x concurrency, ID 0xAA8E9FA785927259 at byte 0 ________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-12-08 09:23:49.637394
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,11 +1,11 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x5796997451B1FA1D 1.0007 100.0% 1 1.0007 1.00 0.00 SELECT tbl
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x5796997451B1FA1D 1.0007 100.0% 1 1.0007 0.00 SELECT tbl
# Query 1: 0 QPS, 0x concurrency, ID 0x5796997451B1FA1D at byte 123 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,6 +1,6 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAECF4CA2310AC9E2 1.0303 97.1% 1 1.0303 NS 0.00 UPDATE foo
# MISC 0xMISC 0.0306 2.9% 2 0.0153 NS 0.0 <2 ITEMS>
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAECF4CA2310AC9E2 1.0303 97.1% 1 1.0303 0.00 UPDATE foo
# MISC 0xMISC 0.0306 2.9% 2 0.0153 0.0 <2 ITEMS>

View File

@@ -1,5 +1,5 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============== ===== ====== ==== ===== ========
# 1 0xCB5621E548E5497F 17.5000 100.0% 4 4.3750 NS 2.23 SELECT t
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============== ===== ====== ===== ========
# 1 0xCB5621E548E5497F 17.5000 100.0% 4 4.3750 2.23 SELECT t

View File

@@ -1,6 +1,6 @@
# Query 1: 2 QPS, 9.00x concurrency, ID 0x82860EDA9A88FCC5 at byte 1 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 5.44
# Scores: V/M = 5.44
# Time range: 2007-10-15 21:43:52 to 21:43:53
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x5D51E5F01B88B79E at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Time range: all events occurred at 2009-04-12 11:00:13.118191
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x82860EDA9A88FCC5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,6 +1,6 @@
# Query 1: 0.67 QPS, 1x concurrency, ID 0x82860EDA9A88FCC5 at byte 0 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = NS [0.0]*, V/M = 0.33
# Scores: V/M = 0.33
# Time range: 2007-10-15 21:43:52 to 21:43:55
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,6 +1,6 @@
# Query 1: 1 QPS, 2x concurrency, ID 0x82860EDA9A88FCC5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = NS [0.0]*, V/M = 0.30
# Scores: V/M = 0.30
# Time range: 2007-10-15 21:43:52 to 21:43:55
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,5 +1,5 @@
# Item 1: 0 QPS, 0x concurrency, ID 0xEDEF654FCCC4A4D8 at byte 0 _________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
# Count 100 2

View File

@@ -1,5 +1,5 @@
# Item 1: 0 QPS, 0x concurrency, ID 0xEDEF654FCCC4A4D8 at byte 0 _________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
# Count 100 3

View File

@@ -1,5 +1,5 @@
# Item 1: 0 QPS, 0x concurrency, ID 0xEDEF654FCCC4A4D8 at byte 0 _________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,5 +1,5 @@
# Item 1: 0 QPS, 0x concurrency, ID 0xEDEF654FCCC4A4D8 at byte 0 _________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,5 +1,5 @@
# Query 0: 0 QPS, 0x concurrency, ID 0x82860EDA9A88FCC5 at byte 0 ________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xFDE00DF974C61E9F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.62 [1.0]*, V/M = 17.71
# Scores: V/M = 17.71
# Query_time sparkline: |^^ ^^|
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,12 +1,12 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ==== ===== ======= =========
# 1 0x46F81B022F1AD76B 0.0003 100.0% 1 0.0003 NS 0.00 ia SELECT t
# MISC 0xMISC 0.0003 100.0% 1 0.0003 NS 0.0 MISC <1 ITEMS>
# Rank Query ID Response time Calls R/Call V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ===== ======= =========
# 1 0x46F81B022F1AD76B 0.0003 100.0% 1 0.0003 0.00 ia SELECT t
# MISC 0xMISC 0.0003 100.0% 1 0.0003 0.0 MISC <1 ITEMS>
# Query 1: 0 QPS, 0x concurrency, ID 0x46F81B022F1AD76B at byte 0 ________
# Scores: Apdex = NS [0.0]*, V/M = 0.00
# Scores: V/M = 0.00
# EXPLAIN sparkline: ia
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-12-08 09:23:49.637394

View File

@@ -15,7 +15,7 @@
# error code 0 0 0 0 0 0 0
# Query 1: 0 QPS, 0x concurrency, ID 0xCD948EAF18BC614E at byte 953 ______
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2007-12-07 12:02:08
# Attribute pct total min max avg 95% stddev median
@@ -52,7 +52,7 @@ replace into test4.tbl9(tbl5, day, todo, comment)
and o.col3 >= date_sub(current_date, interval 30 day)\G
# Query 2: 0 QPS, 0x concurrency, ID 0xC356FD9EFD7D799E at byte 605 ______
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2007-12-07 12:02:07
# Attribute pct total min max avg 95% stddev median
@@ -89,7 +89,7 @@ select e.tblo = o.tblo,
inner join test3.tbl2 as e on o.animal = e.animal and o.oid = e.oid where e.tblo is null\G
# Query 3: 0 QPS, 0x concurrency, ID 0xB5E55291C7DE1096 at byte 1469 _____
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2007-12-07 12:02:50
# Attribute pct total min max avg 95% stddev median
@@ -126,7 +126,7 @@ select o.tbl2 = e.tbl2,
on o.animal = e.animal and o.oid = e.oid where o.tbl2 is null\G
# Query 4: 0 QPS, 0x concurrency, ID 0x85FFF5AA78E5FF6A at byte 146 ______
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2007-12-07 12:02:50
# Attribute pct total min max avg 95% stddev median
@@ -156,7 +156,7 @@ select o.tbl2 = e.tbl2,
BEGIN\G
# Query 5: 0 QPS, 0x concurrency, ID 0xED69B13F3D0161D0 at byte 2479 _____
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2007-12-07 12:02:53
# Attribute pct total min max avg 95% stddev median
@@ -191,7 +191,7 @@ select last2metric1 = last1metric1, last2time = last1time,
last0metric1 = ondeckmetric1, last0time = now() from test2.tbl8 where tbl8 in (10800712)\G
# Query 6: 0 QPS, 0x concurrency, ID 0x79BFEA84D0CED05F at byte 1889 _____
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2007-12-07 12:02:53
# Attribute pct total min max avg 95% stddev median
@@ -222,11 +222,11 @@ insert into test1.tbl6
metric12 = metric12 + values(metric12), secs = secs + values(secs)\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Ite
# ==== ================== ================ ===== ========== ==== ===== ===
# 1 0xCD948EAF18BC614E 20704.0000 16.7% 1 20704.0000 0.00 0.00 REPLACE SELECT test?.tbl? test?.tblo test?.tbl?
# 2 0xC356FD9EFD7D799E 20675.0000 16.7% 1 20675.0000 0.00 0.00 UPDATE test?.tblo test?.tbl?
# 3 0xB5E55291C7DE1096 20664.0000 16.7% 1 20664.0000 0.00 0.00 UPDATE test?.tblo test?.tbl?
# 4 0x85FFF5AA78E5FF6A 20664.0000 16.7% 1 20664.0000 0.00 0.00 BEGIN
# 5 0xED69B13F3D0161D0 20661.0000 16.7% 1 20661.0000 0.00 0.00 UPDATE test?.tbl?
# 6 0x79BFEA84D0CED05F 20661.0000 16.7% 1 20661.0000 0.00 0.00 INSERT UPDATE test?.tbl?
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ================ ===== ========== ===== ========
# 1 0xCD948EAF18BC614E 20704.0000 16.7% 1 20704.0000 0.00 REPLACE SELECT test?.tbl? test?.tblo test?.tbl?
# 2 0xC356FD9EFD7D799E 20675.0000 16.7% 1 20675.0000 0.00 UPDATE test?.tblo test?.tbl?
# 3 0xB5E55291C7DE1096 20664.0000 16.7% 1 20664.0000 0.00 UPDATE test?.tblo test?.tbl?
# 4 0x85FFF5AA78E5FF6A 20664.0000 16.7% 1 20664.0000 0.00 BEGIN
# 5 0xED69B13F3D0161D0 20661.0000 16.7% 1 20661.0000 0.00 UPDATE test?.tbl?
# 6 0x79BFEA84D0CED05F 20661.0000 16.7% 1 20661.0000 0.00 INSERT UPDATE test?.tbl?

View File

@@ -16,7 +16,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xF25D6D5AC7C18FF3 at byte 381 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2009-07-22 07:21:59
# Attribute pct total min max avg 95% stddev median
@@ -45,7 +45,7 @@ create database d\G
# Query 2: 0 QPS, 0x concurrency, ID 0x03409022EB8A4AE7 at byte 795 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2009-07-22 07:22:16
# Attribute pct total min max avg 95% stddev median
@@ -72,7 +72,7 @@ create table foo (i int)\G
# Query 3: 0 QPS, 0x concurrency, ID 0xF579EC4A9633EEA0 at byte 973 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2009-07-22 07:22:24
# Attribute pct total min max avg 95% stddev median
@@ -95,8 +95,8 @@ create table foo (i int)\G
insert foo values (1) /*... omitted ...*/\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xF25D6D5AC7C18FF3 0.0000 0.0% 1 0.0000 1.00 0.00 CREATE DATABASE d
# 2 0x03409022EB8A4AE7 0.0000 0.0% 1 0.0000 1.00 0.00 CREATE TABLE foo
# 3 0xF579EC4A9633EEA0 0.0000 0.0% 1 0.0000 1.00 0.00 INSERT
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===============
# 1 0xF25D6D5AC7C18FF3 0.0000 0.0% 1 0.0000 0.00 CREATE DATABASE d
# 2 0x03409022EB8A4AE7 0.0000 0.0% 1 0.0000 0.00 CREATE TABLE foo
# 3 0xF579EC4A9633EEA0 0.0000 0.0% 1 0.0000 0.00 INSERT

View File

@@ -1,6 +1,6 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x5B721CAE3EDDB56B 0.0900 69.1% 1 0.0900 1.00 0.00
# 2 0xBE90A42C0FB7E89E 0.0403 30.9% 1 0.0403 1.00 0.00
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===========
# 1 0x5B721CAE3EDDB56B 0.0900 69.1% 1 0.0900 0.00
# 2 0xBE90A42C0FB7E89E 0.0403 30.9% 1 0.0403 0.00

View File

@@ -7,7 +7,7 @@
# Query size 315 27 124 45 118.34 31.33 28.75
# Query 1: 0.00 QPS, 0x concurrency, ID 0x5D51E5F01B88B79E at byte 244 ___
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: 2005-10-07 21:55:24 to 2006-12-26 15:42:36
# Attribute pct total min max avg 95% stddev median
@@ -31,7 +31,7 @@
administrator command: Connect\G
# Query 2: 0.00 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 464 ___
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: 2005-10-07 21:55:24 to 2006-12-26 16:44:48
# Attribute pct total min max avg 95% stddev median
@@ -53,7 +53,7 @@ administrator command: Connect\G
administrator command: Quit\G
# Query 3: 0 QPS, 0x concurrency, ID 0x4D096479916B0F45 at byte 346 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2006-12-26 15:42:36
# Attribute pct total min max avg 95% stddev median
@@ -79,7 +79,7 @@ administrator command: Quit\G
SELECT DISTINCT col FROM tbl WHERE foo=20061219\G
# Query 4: 0 QPS, 0x concurrency, ID 0x44AAC79F41BCF692 at byte 58 _______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2005-10-07 21:55:24
# Attribute pct total min max avg 95% stddev median
@@ -108,7 +108,7 @@ SELECT foo
ORDER BY col\G
# Query 5: 0 QPS, 0x concurrency, ID 0x44AE35A182869033 at byte 300 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2006-12-26 15:42:36
# Attribute pct total min max avg 95% stddev median
@@ -130,10 +130,10 @@ SELECT foo
administrator command: Init DB\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x5D51E5F01B88B79E 0.0000 0.0% 2 0.0000 1.00 0.00 ADMIN CONNECT
# 2 0xAA353644DE4C4CB4 0.0000 0.0% 2 0.0000 1.00 0.00 ADMIN QUIT
# 3 0x4D096479916B0F45 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT tbl
# 4 0x44AAC79F41BCF692 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT tbl
# 5 0x44AE35A182869033 0.0000 0.0% 1 0.0000 1.00 0.00 ADMIN INIT DB
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== =============
# 1 0x5D51E5F01B88B79E 0.0000 0.0% 2 0.0000 0.00 ADMIN CONNECT
# 2 0xAA353644DE4C4CB4 0.0000 0.0% 2 0.0000 0.00 ADMIN QUIT
# 3 0x4D096479916B0F45 0.0000 0.0% 1 0.0000 0.00 SELECT tbl
# 4 0x44AAC79F41BCF692 0.0000 0.0% 1 0.0000 0.00 SELECT tbl
# 5 0x44AE35A182869033 0.0000 0.0% 1 0.0000 0.00 ADMIN INIT DB

View File

@@ -8,7 +8,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x2361B36A4AEB397B at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2010-02-11 00:55:24
# Attribute pct total min max avg 95% stddev median
@@ -35,7 +35,7 @@ SELECT category_id
# Query 2: 0 QPS, 0x concurrency, ID 0x0A3E6DCD23F3445A at byte 237 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2010-02-11 00:55:24
# Attribute pct total min max avg 95% stddev median
@@ -71,7 +71,7 @@ SELECT auction_id, auction_title_en AS title, close_time,
LIMIT 500\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x2361B36A4AEB397B 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT auction_category_map
# 2 0x0A3E6DCD23F3445A 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT auction_search
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===============
# 1 0x2361B36A4AEB397B 0.0000 0.0% 1 0.0000 0.00 SELECT auction_category_map
# 2 0x0A3E6DCD23F3445A 0.0000 0.0% 1 0.0000 0.00 SELECT auction_search

View File

@@ -7,7 +7,7 @@
# Query size 315 27 124 45 118.34 31.33 28.75
# Query 1: 0 QPS, 0x concurrency, ID 0x5D51E5F01B88B79E at byte 246 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2005-10-07 21:55:24
# Attribute pct total min max avg 95% stddev median
@@ -31,7 +31,7 @@
administrator command: Connect\G
# Query 2: 0 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 466 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2005-10-07 21:55:24
# Attribute pct total min max avg 95% stddev median
@@ -53,7 +53,7 @@ administrator command: Connect\G
administrator command: Quit\G
# Query 3: 0 QPS, 0x concurrency, ID 0x4D096479916B0F45 at byte 348 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2005-10-07 21:55:24
# Attribute pct total min max avg 95% stddev median
@@ -79,7 +79,7 @@ administrator command: Quit\G
SELECT DISTINCT col FROM tbl WHERE foo=20061219\G
# Query 4: 0 QPS, 0x concurrency, ID 0x44AAC79F41BCF692 at byte 60 _______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2005-10-07 21:55:24
# Attribute pct total min max avg 95% stddev median
@@ -108,7 +108,7 @@ SELECT foo
ORDER BY col\G
# Query 5: 0 QPS, 0x concurrency, ID 0x44AE35A182869033 at byte 302 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2005-10-07 21:55:24
# Attribute pct total min max avg 95% stddev median
@@ -130,10 +130,10 @@ SELECT foo
administrator command: Init DB\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x5D51E5F01B88B79E 0.0000 0.0% 2 0.0000 1.00 0.00 ADMIN CONNECT
# 2 0xAA353644DE4C4CB4 0.0000 0.0% 2 0.0000 1.00 0.00 ADMIN QUIT
# 3 0x4D096479916B0F45 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT tbl
# 4 0x44AAC79F41BCF692 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT tbl
# 5 0x44AE35A182869033 0.0000 0.0% 1 0.0000 1.00 0.00 ADMIN INIT DB
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== =============
# 1 0x5D51E5F01B88B79E 0.0000 0.0% 2 0.0000 0.00 ADMIN CONNECT
# 2 0xAA353644DE4C4CB4 0.0000 0.0% 2 0.0000 0.00 ADMIN QUIT
# 3 0x4D096479916B0F45 0.0000 0.0% 1 0.0000 0.00 SELECT tbl
# 4 0x44AAC79F41BCF692 0.0000 0.0% 1 0.0000 0.00 SELECT tbl
# 5 0x44AE35A182869033 0.0000 0.0% 1 0.0000 0.00 ADMIN INIT DB

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xFB0C089DD4451762 at byte 59213 ____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.411349
# Attribute pct total min max avg 95% stddev median
@@ -25,7 +25,7 @@
get www.percona.com/images/menu_our-vision.gif
# Query 2: 0 QPS, 0x concurrency, ID 0x7C3AA9143C98C14A at byte 206 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.074855
# Attribute pct total min max avg 95% stddev median
@@ -50,7 +50,7 @@ get www.percona.com/images/menu_our-vision.gif
get www.percona.com/about-us.html
# Query 3: 0 QPS, 0x concurrency, ID 0x7CC09CE55CB7750C at byte 16362 ____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.157215
# Attribute pct total min max avg 95% stddev median
@@ -75,7 +75,7 @@ get www.percona.com/about-us.html
get www.percona.com/js/jquery.js
# Query 4: 0 QPS, 0x concurrency, ID 0x44C0C94594575296 at byte 65644 ____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.420851
# Attribute pct total min max avg 95% stddev median
@@ -100,7 +100,7 @@ get www.percona.com/js/jquery.js
get www.percona.com/images/bg-gray-corner-top.gif
# Query 5: 0 QPS, 0x concurrency, ID 0x08207FBDE8A42C36 at byte 67956 ____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.420996
# Attribute pct total min max avg 95% stddev median
@@ -125,7 +125,7 @@ get www.percona.com/images/bg-gray-corner-top.gif
get www.percona.com/images/handshake.jpg
# Query 6: 0 QPS, 0x concurrency, ID 0x4F1E2B5E822F55B8 at byte 53100 ____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.346763
# Attribute pct total min max avg 95% stddev median
@@ -150,7 +150,7 @@ get www.percona.com/images/handshake.jpg
get www.percona.com/images/menu_team.gif
# Query 7: 0 QPS, 0x concurrency, ID 0x7FB624EE10D71E1F at byte 170117 ___
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:14.737890
# Attribute pct total min max avg 95% stddev median
@@ -175,7 +175,7 @@ get www.percona.com/images/menu_team.gif
get hit.clickaider.com/s/forms.js
# Query 8: 0 QPS, 0x concurrency, ID 0x1279DE4968C95A8D at byte 147447 ___
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:14.536149
# Attribute pct total min max avg 95% stddev median
@@ -200,7 +200,7 @@ get hit.clickaider.com/s/forms.js
get hit.clickaider.com/clickaider.js
# Query 9: 0 QPS, 0x concurrency, ID 0x590BE2A84B8F0D5B at byte 167245 ___
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:14.678713
# Attribute pct total min max avg 95% stddev median
@@ -225,7 +225,7 @@ get hit.clickaider.com/clickaider.js
get hit.clickaider.com/pv?lng=140&&lnks=&t=About%20Percona&c=73a41b95-2926&r=http%3A%2F%2Fwww.percona.com%2F&tz=-420&loc=http%3A%2F%2Fwww.percona.com%2Fabout-us.html&rnd=3688
# Query 10: 0 QPS, 0x concurrency, ID 0xFC5C4A690D695F35 at byte 55942 ___
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-11-09 15:31:09.373800
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,12 +1,12 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ==== ===== ======= ========
# 1 0xD4B6A5CD2F2F485C 0.2148 100.0% 1 0.2148 1.00 0.00 TF>aa SELECT t
# Rank Query ID Response time Calls R/Call V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ===== ======= ========
# 1 0xD4B6A5CD2F2F485C 0.2148 100.0% 1 0.2148 0.00 TF>aa SELECT t
# Query 1: 0 QPS, 0x concurrency, ID 0xD4B6A5CD2F2F485C at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# EXPLAIN sparkline: TF>aa
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2010-12-14 16:12:28

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x26193ADA9E14A97E at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-04 21:33:39.229179
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x456F2F160AF2DC0F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-04 22:12:06.174390
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAEBF67014CC9A7C0 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-04 22:12:06.175734
# Attribute pct total min max avg 95% stddev median
@@ -27,7 +27,7 @@ incr key
# Query 2: 0 QPS, 0x concurrency, ID 0xC03129972E1D6A1F at byte 522 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-04 22:12:06.176181
# Attribute pct total min max avg 95% stddev median

View File

@@ -5,7 +5,7 @@
# Item 1: 4.47k QPS, 0.32x concurrency, ID 0x8228B9A98CA1531D at byte 0 __
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-04 22:12:06.175734 to 22:12:06.176181
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAEBF67014CC9A7C0 at byte 764 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-06 10:37:21.668469
# Attribute pct total min max avg 95% stddev median
@@ -28,7 +28,7 @@ incr key
# Query 2: 0 QPS, 0x concurrency, ID 0xC03129972E1D6A1F at byte 1788 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-06 10:37:21.668851
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x26193ADA9E14A97E at byte 764 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-06 22:07:14.406827
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x456F2F160AF2DC0F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-06 22:07:14.411331
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x28C64E8A71EEAEAF at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-06-11 21:54:49.059144
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 645.28k QPS, 1.29x concurrency, ID 0x456F2F160AF2DC0F at byte 0
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: |^ |
# Time range: 2009-07-06 22:07:14.411331 to 22:07:14.411334
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x6A3331FD94A66F54 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-06-11 21:54:52.244534
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x3D1AED9A2A3A73C8 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-09 22:00:29.066476
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,25 +1,25 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x949BAEB72FDE23A2 1.4501 33.3% 16 0.0906 1.00 0.00 SELECT stats_cvs_group
# 2 0x8FFEBD609B778EB2 0.5053 11.6% 45 0.0112 1.00 0.10 INSERT activity_log
# 3 0x64F8E6F000640AF8 0.3750 8.6% 5 0.0750 1.00 0.00 SELECT users
# 4 0x22375E33FDA4E899 0.3705 8.5% 1 0.3705 1.00 0.00 SELECT ONLY OF
# 5 0x60D6962E42C08882 0.1020 2.3% 46 0.0022 1.00 0.00 SELECT plugins
# 6 0x32AF9886FDBBAE30 0.0981 2.3% 38 0.0026 1.00 0.00 SELECT frs_filetype frs_processor frs_file frs_dlstats_filetotal_agg
# 7 0x5E64B4F52EC23D71 0.0936 2.1% 17 0.0055 1.00 0.01 SELECT trove_cat trove_group_link
# 8 0x1929E67B76DC55E7 0.0877 2.0% 5 0.0175 1.00 0.00 SELECT frs_dlstats_grouptotal_vw groups
# 9 0x1451AE69DBB6E0F2 0.0780 1.8% 1 0.0780 1.00 0.00 SELECT users
# 10 0xD7884E7E471BB089 0.0722 1.7% 61 0.0012 1.00 0.00 SELECT forum_group_list_vw
# 11 0x9DBDF5FB59454957 0.0612 1.4% 5 0.0122 1.00 0.00 SELECT users news_bytes groups
# 12 0x834CC93BAA549DD4 0.0609 1.4% 17 0.0036 1.00 0.00 SELECT users user_group
# 13 0xEF691689ACF9DC59 0.0595 1.4% 10 0.0059 1.00 0.00 SELECT frs_package frs_release frs_file groups
# 14 0x10D09F1381004A22 0.0582 1.3% 17 0.0034 1.00 0.00 SELECT groups
# 15 0xCF439D1EC0933550 0.0579 1.3% 2 0.0290 1.00 0.04 SELECT pg_catalog.pg_class pg_catalog.pg_namespace
# 16 0x7D752C8A15925978 0.0544 1.2% 60 0.0009 1.00 0.00 BEGIN SELECT
# 17 0x82AEF03891943FB3 0.0514 1.2% 2 0.0257 1.00 0.03 SELECT forum_group_list_vw
# 18 0x9AA827C1DF73EE43 0.0496 1.1% 17 0.0029 1.00 0.00 SELECT users news_bytes groups
# 19 0x4636BFC0875521C9 0.0447 1.0% 40 0.0011 1.00 0.00 SELECT supported_languages
# 20 0xB1C777CE6EBFE87E 0.0434 1.0% 17 0.0026 1.00 0.00 SELECT frs_package frs_release
# MISC 0xMISC 0.5823 13.4% 334 0.0017 NS 0.0 <47 ITEMS>
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===============
# 1 0x949BAEB72FDE23A2 1.4501 33.3% 16 0.0906 0.00 SELECT stats_cvs_group
# 2 0x8FFEBD609B778EB2 0.5053 11.6% 45 0.0112 0.10 INSERT activity_log
# 3 0x64F8E6F000640AF8 0.3750 8.6% 5 0.0750 0.00 SELECT users
# 4 0x22375E33FDA4E899 0.3705 8.5% 1 0.3705 0.00 SELECT ONLY OF
# 5 0x60D6962E42C08882 0.1020 2.3% 46 0.0022 0.00 SELECT plugins
# 6 0x32AF9886FDBBAE30 0.0981 2.3% 38 0.0026 0.00 SELECT frs_filetype frs_processor frs_file frs_dlstats_filetotal_agg
# 7 0x5E64B4F52EC23D71 0.0936 2.1% 17 0.0055 0.01 SELECT trove_cat trove_group_link
# 8 0x1929E67B76DC55E7 0.0877 2.0% 5 0.0175 0.00 SELECT frs_dlstats_grouptotal_vw groups
# 9 0x1451AE69DBB6E0F2 0.0780 1.8% 1 0.0780 0.00 SELECT users
# 10 0xD7884E7E471BB089 0.0722 1.7% 61 0.0012 0.00 SELECT forum_group_list_vw
# 11 0x9DBDF5FB59454957 0.0612 1.4% 5 0.0122 0.00 SELECT users news_bytes groups
# 12 0x834CC93BAA549DD4 0.0609 1.4% 17 0.0036 0.00 SELECT users user_group
# 13 0xEF691689ACF9DC59 0.0595 1.4% 10 0.0059 0.00 SELECT frs_package frs_release frs_file groups
# 14 0x10D09F1381004A22 0.0582 1.3% 17 0.0034 0.00 SELECT groups
# 15 0xCF439D1EC0933550 0.0579 1.3% 2 0.0290 0.04 SELECT pg_catalog.pg_class pg_catalog.pg_namespace
# 16 0x7D752C8A15925978 0.0544 1.2% 60 0.0009 0.00 BEGIN SELECT
# 17 0x82AEF03891943FB3 0.0514 1.2% 2 0.0257 0.03 SELECT forum_group_list_vw
# 18 0x9AA827C1DF73EE43 0.0496 1.1% 17 0.0029 0.00 SELECT users news_bytes groups
# 19 0x4636BFC0875521C9 0.0447 1.0% 40 0.0011 0.00 SELECT supported_languages
# 20 0xB1C777CE6EBFE87E 0.0434 1.0% 17 0.0026 0.00 SELECT frs_package frs_release
# MISC 0xMISC 0.5823 13.4% 334 0.0017 0.0 <47 ITEMS>

View File

@@ -1,12 +1,12 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x43088A2EF12EB3EE 0.1661 38.2% 2 0.0830 1.00 0.11 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 2 0xD6F2B77706BEEB5F 0.0710 16.3% 1 0.0710 1.00 0.00 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 3 0x9213FC20E3993331 0.0464 10.7% 1 0.0464 1.00 0.00 SELECT foo
# 4 0x458CB071ADE822AC 0.0446 10.3% 6 0.0074 1.00 0.00 SELECT
# 5 0x60960AADCFD005F3 0.0426 9.8% 1 0.0426 1.00 0.00 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 6 0xA99588746B4C6438 0.0283 6.5% 1 0.0283 1.00 0.00 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 7 0x32A1860329937485 0.0278 6.4% 1 0.0278 1.00 0.00 SELECT pg_catalog.pg_database pg_catalog.pg_roles
# MISC 0xMISC 0.0083 1.9% 1 0.0083 NS 0.0 <1 ITEMS>
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===============
# 1 0x43088A2EF12EB3EE 0.1661 38.2% 2 0.0830 0.11 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 2 0xD6F2B77706BEEB5F 0.0710 16.3% 1 0.0710 0.00 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 3 0x9213FC20E3993331 0.0464 10.7% 1 0.0464 0.00 SELECT foo
# 4 0x458CB071ADE822AC 0.0446 10.3% 6 0.0074 0.00 SELECT
# 5 0x60960AADCFD005F3 0.0426 9.8% 1 0.0426 0.00 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 6 0xA99588746B4C6438 0.0283 6.5% 1 0.0283 0.00 SELECT pg_catalog.pg_class pg_catalog.pg_roles pg_catalog.pg_namespace
# 7 0x32A1860329937485 0.0278 6.4% 1 0.0278 0.00 SELECT pg_catalog.pg_database pg_catalog.pg_roles
# MISC 0xMISC 0.0083 1.9% 1 0.0083 0.0 <1 ITEMS>

View File

@@ -7,7 +7,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xCB5621E548E5497F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -31,7 +31,7 @@ SELECT c FROM t WHERE id=1\G
# Query 2: 0 QPS, 0x concurrency, ID 0x774B2B0B59EBAC2C at byte 27 _______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -54,7 +54,7 @@ SELECT c FROM t WHERE id=1\G
/* Hello, world! */ SELECT * FROM t2 LIMIT 1\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== =========
# 1 0xCB5621E548E5497F 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT t
# 2 0x774B2B0B59EBAC2C 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT t?
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== =========
# 1 0xCB5621E548E5497F 0.0000 0.0% 1 0.0000 0.00 SELECT t
# 2 0x774B2B0B59EBAC2C 0.0000 0.0% 1 0.0000 0.00 SELECT t?

View File

@@ -5,7 +5,7 @@
# Item 1: 0 QPS, 0x concurrency, ID 0x82E67ABEEDCA3249 at byte 0 _________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
@@ -33,7 +33,7 @@ SELECT n
# Item 2: 0 QPS, 0x concurrency, ID 0x7AD070CD3F4121D5 at byte 359 _______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:45:10
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x7F7D57ACDD8A346E at byte 0 ________
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
@@ -31,7 +31,7 @@
select sleep(2) from n\G
# Query 2: 0 QPS, 0x concurrency, ID 0x3A99CC42AEDCCFCD at byte 359 ______
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:45:10
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x7F7D57ACDD8A346E at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -24,7 +24,7 @@ select sleep(2) from n\G
# Query 2: 0 QPS, 0x concurrency, ID 0x3A99CC42AEDCCFCD at byte 359 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -5,7 +5,7 @@
# Item 1: 0.03 QPS, 0.05x concurrency, ID 0x1161D7068EB79526 at byte 0 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-10-15 21:43:52 to 21:45:10
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
--order-by attribute Rows_read doesn't exist, using Query_time:sum
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -43,7 +43,7 @@ select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507
inner join db1.gonzo a using(gonzo) \G
# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1334 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -86,7 +86,7 @@ WHERE vab3concept1upload='6994465'\G
select vab3concept1id = '91848182522' from db4.vab3concept1upload where vab3concept1upload='6994465'\G
# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 2393 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -128,7 +128,7 @@ SET biz = '91848182522'\G
select biz = '91848182522' from foo.bar \G
# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -171,7 +171,7 @@ WHERE fillze='899'\G
select boop='bop: 899' from bizzle.bat where fillze='899'\G
# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1864 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -210,7 +210,7 @@ INSERT INTO db1.conch (word3, vid83)
VALUES ('211', '18')\G
# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 815 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -249,7 +249,7 @@ INSERT INTO db3.vendor11gonzo (makef, bizzle)
VALUES ('', 'Exact')\G
# Query 7: 0 QPS, 0x concurrency, ID 0x85FFF5AA78E5FF6A at byte 0 ________
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -43,7 +43,7 @@ select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507
inner join db1.gonzo a using(gonzo) \G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x66825DDC008FFA89 0.7261 95.3% 1 0.7261 1.00 0.00 UPDATE db?.tuningdetail_?_? db?.gonzo
# MISC 0xMISC 0.0360 4.7% 7 0.0051 NS 0.0 <6 ITEMS>
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===============
# 1 0x66825DDC008FFA89 0.7261 95.3% 1 0.7261 0.00 UPDATE db?.tuningdetail_?_? db?.gonzo
# MISC 0xMISC 0.0360 4.7% 7 0.0051 0.0 <6 ITEMS>

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3374 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -44,7 +44,7 @@ select biz = '91848182522' from foo.bar \G
# Query 2: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -42,7 +42,7 @@ select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507
inner join db1.gonzo a using(gonzo) \G
# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1334 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -85,7 +85,7 @@ WHERE vab3concept1upload='6994465'\G
select vab3concept1id = '91848182522' from db4.vab3concept1upload where vab3concept1upload='6994465'\G
# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3374 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -127,7 +127,7 @@ SET biz = '91848182522'\G
select biz = '91848182522' from foo.bar \G
# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -170,7 +170,7 @@ WHERE fillze='899'\G
select boop='bop: 899' from bizzle.bat where fillze='899'\G
# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1864 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -209,7 +209,7 @@ INSERT INTO db1.conch (word3, vid83)
VALUES ('211', '18')\G
# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 815 ______
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -248,7 +248,7 @@ INSERT INTO db3.vendor11gonzo (makef, bizzle)
VALUES ('', 'Exact')\G
# Query 7: 0 QPS, 0x concurrency, ID 0x85FFF5AA78E5FF6A at byte 0 ________
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x85FFF5AA78E5FF6A at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xB16C9E5B3D9C484F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0.05 QPS, 0x concurrency, ID 0xA20C29AF174CE545 at byte 1833 __
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:27 to 11:49:30
# Attribute pct total min max avg 95% stddev median
@@ -34,7 +34,7 @@ SELECT col FROM foo_tbl\G
# Query 2: 0.30 QPS, 0x concurrency, ID 0xD4CD74934382A184 at byte 1469 __
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:57 to 11:49:07
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:27 to 11:49:30
# Attribute pct total min max avg 95% stddev median
@@ -40,7 +40,7 @@ SELECT col FROM foo_tbl\G
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:57 to 11:49:07
# Attribute pct total min max avg 95% stddev median

View File

@@ -2,7 +2,7 @@
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:57 to 11:49:07
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:27 to 11:49:30
# Attribute pct total min max avg 95% stddev median
@@ -40,7 +40,7 @@ SELECT col FROM foo_tbl\G
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:57 to 11:49:07
# Attribute pct total min max avg 95% stddev median

View File

@@ -2,7 +2,7 @@
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:57 to 11:49:07
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:27 to 11:49:30
# Attribute pct total min max avg 95% stddev median
@@ -34,7 +34,7 @@ SELECT col FROM foo_tbl\G
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:57 to 11:49:07
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x8E306CDB7A800841 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# EXPLAIN sparkline: I
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x8E306CDB7A800841 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# EXPLAIN sparkline: I
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x8E306CDB7A800841 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -34,6 +34,6 @@ SELECT fruit FROM trees\G
# EXPLAIN failed: DBD::mysql::st execute failed: Table 'food.trees' doesn't exist [for Statement "EXPLAIN /*!50100 PARTITIONS */ SELECT fruit FROM trees"] at line ?.
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ==== ===== ========= ========
# 1 0x8E306CDB7A800841 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT trees
# Rank Query ID Response time Calls R/Call V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ===== ========== ============
# 1 0x8E306CDB7A800841 0.0000 100.0% 1 0.0000 0.00 SELECT trees

View File

@@ -1,5 +1,5 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ==== ===== ======= ==========
# 1 0x8E306CDB7A800841 0.0000 100.0% 1 0.0000 1.00 0.00 I SELECT trees
# Rank Query ID Response time Calls R/Call V/M EXPLAIN Item
# ==== ================== ============= ===== ====== ===== ======= ============
# 1 0x8E306CDB7A800841 0.0000 100.0% 1 0.0000 0.00 I SELECT trees

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xC72BF45D68E35A6E at byte 435 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -32,7 +32,7 @@ SELECT MIN(id),MAX(id) FROM tbl\G
# Query 2: 0 QPS, 0x concurrency, ID 0xCC47B42511EA22DD at byte 221 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -59,7 +59,7 @@ SET NAMES utf8\G
# Query 3: 0 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: |^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -5,7 +5,7 @@
# Item 1: 0 QPS, 0x concurrency, ID 0xE0976A52E15A18AC at byte 0 _________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 435 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.02
# Scores: V/M = 0.02
# Query_time sparkline: |^ ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -28,7 +28,7 @@ administrator command: Quit\G
# Query 2: 0 QPS, 0x concurrency, ID 0xCC47B42511EA22DD at byte 663 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x31DA25F95494CA95 at byte 174 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:20
# Attribute pct total min max avg 95% stddev median
@@ -29,7 +29,7 @@ SHOW STATUS\G
# Query 2: 0 QPS, 0x concurrency, ID 0x3AEAAD0E15D725B5 at byte 600 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:21
# Attribute pct total min max avg 95% stddev median
@@ -57,7 +57,7 @@ SET autocommit=0\G
# Query 3: 0 QPS, 0x concurrency, ID 0x813031B8BBC3B329 at byte 782 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:21
# Attribute pct total min max avg 95% stddev median
@@ -85,7 +85,7 @@ commit\G
# Query 4: 0 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 385 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: |^ |
# Time range: all events occurred at 2008-11-27 08:51:21
# Attribute pct total min max avg 95% stddev median

View File

@@ -15,7 +15,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x31DA25F95494CA95 at byte 174 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:20
# Attribute pct total min max avg 95% stddev median
@@ -47,7 +47,7 @@ SHOW STATUS\G
# Item 1: 2 QPS, 0.15x concurrency, ID 0x4F1658C9B243995F at byte 174 ____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.15
# Scores: V/M = 0.15
# Query_time sparkline: |^ ^ |
# Time range: 2008-11-27 08:51:20 to 08:51:21
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x31DA25F95494CA95 at byte 174 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:20
# Attribute pct total min max avg 95% stddev median

View File

@@ -5,7 +5,7 @@
# Item 1: 2 QPS, 0.15x concurrency, ID 0x4F1658C9B243995F at byte 174 ____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.15
# Scores: V/M = 0.15
# Query_time sparkline: |^ ^ |
# Time range: 2008-11-27 08:51:20 to 08:51:21
# Attribute pct total min max avg 95% stddev median
@@ -32,7 +32,7 @@ mytopuser
# Item 2: 0 QPS, 0x concurrency, ID 0x8F4C76E92F07EABE at byte 600 _______
# This item is included in the report because it matches --outliers.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:21
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,8 +1,8 @@
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x31DA25F95494CA95 0.1494 99.9% 1 0.1494 1.00 0.00 SHOW STATUS
# 2 0x3AEAAD0E15D725B5 0.0001 0.1% 2 0.0000 1.00 0.00 SET
# 3 0x813031B8BBC3B329 0.0000 0.0% 1 0.0000 1.00 0.00 COMMIT
# MISC 0xMISC 0.0000 0.0% 1 0.0000 NS 0.0 <1 ITEMS>
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===========
# 1 0x31DA25F95494CA95 0.1494 99.9% 1 0.1494 0.00 SHOW STATUS
# 2 0x3AEAAD0E15D725B5 0.0001 0.1% 2 0.0000 0.00 SET
# 3 0x813031B8BBC3B329 0.0000 0.0% 1 0.0000 0.00 COMMIT
# MISC 0xMISC 0.0000 0.0% 1 0.0000 0.0 <1 ITEMS>

View File

@@ -5,7 +5,7 @@
# Item 1: 2 QPS, 0.15x concurrency, ID 0x4F1658C9B243995F at byte 174 ____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.15
# Scores: V/M = 0.15
# Query_time sparkline: |^ ^ |
# Time range: 2008-11-27 08:51:20 to 08:51:21
# Attribute pct total min max avg 95% stddev median
@@ -32,7 +32,7 @@ mytopuser
# Item 2: 0 QPS, 0x concurrency, ID 0x8F4C76E92F07EABE at byte 600 _______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2008-11-27 08:51:21
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x7F7D57ACDD8A346E at byte 1313 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x6083030C4A5D8996 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 435 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.02
# Scores: V/M = 0.02
# Query_time sparkline: |^ ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -28,7 +28,7 @@ administrator command: Quit\G
# Query 2: 0 QPS, 0x concurrency, ID 0xCC47B42511EA22DD at byte 221 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAA353644DE4C4CB4 at byte 435 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.02
# Scores: V/M = 0.02
# Query_time sparkline: |^ ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======
@@ -28,7 +28,7 @@ administrator command: Quit\G
# Query 2: 0 QPS, 0x concurrency, ID 0xCC47B42511EA22DD at byte 221 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x8E38374648788E52 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x93E5C17055D970BE at byte 514419 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
@@ -31,7 +31,7 @@ INSERT INTO `film_actor` VALUES (1,1,'2006-02-15 10:05:03') /*... omitted ...*/O
# Query 2: 0 QPS, 0x concurrency, ID 0xA1C3EE4F5996E672 at byte 342942 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median
@@ -61,7 +61,7 @@ INSERT IGNORE INTO `film_actor` VALUES (1,1,'2006-02-15 10:05:03') /*... omitted
# Query 3: 0 QPS, 0x concurrency, ID 0xA2C576176F348267 at byte 171471 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x182FF6A853858893 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-10-15 21:43:52
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Attribute pct total min max avg 95% stddev median
# ============ === ======= ======= ======= ======= ======= ======= =======

View File

@@ -1,7 +1,7 @@
# Query 1: 2 QPS, 0.00x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 509 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-27 11:19:30 to 11:19:31
# Attribute pct total min max avg 95% stddev median
@@ -33,7 +33,7 @@ SELECT * FROM bar\G
# Query 2: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-25 11:19:27
# Attribute pct total min max avg 95% stddev median
@@ -32,6 +32,6 @@
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo

View File

@@ -1,7 +1,7 @@
# Query 1: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-25 11:19:27 to 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median
@@ -32,6 +32,6 @@
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 2 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 2 0.0000 0.00 SELECT foo

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-25 11:19:27
# Attribute pct total min max avg 95% stddev median
@@ -32,13 +32,13 @@
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median
@@ -69,13 +69,13 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 2 QPS, 0.00x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 509 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-27 11:19:30 to 11:19:31
# Attribute pct total min max avg 95% stddev median
@@ -107,7 +107,7 @@ SELECT * FROM bar\G
# Query 2: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 683 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-27 11:30:00
# Attribute pct total min max avg 95% stddev median
@@ -138,14 +138,14 @@ SELECT * FROM bar\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 66.7% 2 0.0000 1.00 0.00 SELECT bar
# 2 0xAC1BF726F2AB10C5 0.0000 33.3% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 66.7% 2 0.0000 0.00 SELECT bar
# 2 0xAC1BF726F2AB10C5 0.0000 33.3% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 861 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-28 18:00:00
# Attribute pct total min max avg 95% stddev median
@@ -176,6 +176,6 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-25 11:19:27
# Attribute pct total min max avg 95% stddev median
@@ -32,13 +32,13 @@
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median
@@ -69,13 +69,13 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 2 QPS, 0.00x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 509 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-27 11:19:30 to 11:19:31
# Attribute pct total min max avg 95% stddev median
@@ -106,13 +106,13 @@ SELECT * FROM foo\G
SELECT * FROM bar\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 2 0.0000 1.00 0.00 SELECT bar
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 2 0.0000 0.00 SELECT bar
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 683 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-27 11:30:00
# Attribute pct total min max avg 95% stddev median
@@ -143,13 +143,13 @@ SELECT * FROM bar\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 861 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-28 18:00:00
# Attribute pct total min max avg 95% stddev median
@@ -180,6 +180,6 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-25 11:19:27
# Attribute pct total min max avg 95% stddev median
@@ -32,13 +32,13 @@
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median
@@ -69,13 +69,13 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 344 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-27 11:19:30
# Attribute pct total min max avg 95% stddev median
@@ -106,6 +106,6 @@ SELECT * FROM foo\G
SELECT * FROM bar\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT bar
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 1 0.0000 0.00 SELECT bar

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-25 11:19:27
# Attribute pct total min max avg 95% stddev median
@@ -32,13 +32,13 @@
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median
@@ -69,13 +69,13 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 344 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-27 11:19:30
# Attribute pct total min max avg 95% stddev median
@@ -106,13 +106,13 @@ SELECT * FROM foo\G
SELECT * FROM bar\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT bar
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 1 0.0000 0.00 SELECT bar
# Query 1: 0 QPS, 0x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 509 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-27 11:19:31
# Attribute pct total min max avg 95% stddev median
@@ -143,13 +143,13 @@ SELECT * FROM bar\G
SELECT * FROM bar\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT bar
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0x07AEF8EFAB3FA3CE 0.0000 100.0% 1 0.0000 0.00 SELECT bar
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 683 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-27 11:30:00
# Attribute pct total min max avg 95% stddev median
@@ -180,13 +180,13 @@ SELECT * FROM bar\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 861 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-28 18:00:00
# Attribute pct total min max avg 95% stddev median
@@ -217,6 +217,6 @@ SELECT * FROM foo\G
SELECT * FROM foo\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 1.00 0.00 SELECT foo
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ==========
# 1 0xAC1BF726F2AB10C5 0.0000 100.0% 1 0.0000 0.00 SELECT foo

View File

@@ -1,7 +1,7 @@
# Query 1: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 861
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-25 11:19:27 to 2009-07-28 18:00:00
# Attribute pct total min max avg 95% stddev median
@@ -33,7 +33,7 @@ SELECT * FROM foo\G
# Query 2: 2 QPS, 0.00x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 509 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-27 11:19:30 to 11:19:31
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 2 QPS, 0.00x concurrency, ID 0x07AEF8EFAB3FA3CE at byte 509 ___
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-27 11:19:30 to 11:19:31
# Attribute pct total min max avg 95% stddev median
@@ -33,7 +33,7 @@ SELECT * FROM bar\G
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 861
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-27 11:30:00 to 2009-07-28 18:00:00
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xAC1BF726F2AB10C5 at byte 861 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-07-28 18:00:00
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 179
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2009-07-25 11:19:27 to 2009-07-26 11:19:28
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1866 _____
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Lock_time sparkline: | ^|
# Time range: all events occurred at 2009-08-05 13:00:27
# Attribute pct total min max avg 95% stddev median
@@ -38,7 +38,7 @@ DELETE FROM forest WHERE animal = 'dead'\G
select * from forest WHERE animal = 'dead'\G
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 934
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.03
# Scores: V/M = 0.03
# Lock_time sparkline: | _^ |
# Time range: 2009-08-05 11:00:27 to 13:00:27
# Attribute pct total min max avg 95% stddev median
@@ -71,7 +71,7 @@ select * from forest WHERE animal = 'dead'\G
SELECT * FROM foo\G
# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1267 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.73
# Scores: V/M = 0.73
# Lock_time sparkline: | ^^ |
# Time range: all events occurred at 2009-08-05 12:00:27
# Attribute pct total min max avg 95% stddev median
@@ -102,7 +102,7 @@ SELECT * FROM foo\G
INSERT INTO tbl VALUES ('a', 'b')\G
# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 333 ______
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Lock_time sparkline: | ^ |
# Time range: all events occurred at 2009-08-05 11:00:27
# Attribute pct total min max avg 95% stddev median
@@ -132,7 +132,7 @@ INSERT INTO tbl VALUES ('a', 'b')\G
SELECT id FROM tbl WHERE id = 1\G
# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 625 ______
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Lock_time sparkline: |^ |
# Time range: all events occurred at 2009-08-05 11:00:27
# Attribute pct total min max avg 95% stddev median
@@ -166,10 +166,10 @@ SELECT id FROM tbl WHERE id = 1\G
SELECT COUNT(*) FROM blah WHERE col > 2\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== =============== ===== ========= ==== ===== =====
# 1 0xABE9508269335CD1 1349.0001 98.9% 1 1349.0001 0.00 0.00 DELETE forest
# 2 0xAC1BF726F2AB10C5 2.9042 0.2% 4 0.7261 1.00 0.03 SELECT foo
# 3 0xB79802214165F670 0.7261 0.1% 2 0.3631 1.00 0.73 INSERT tbl
# 4 0x1F9B2F47A843D460 1.7261 0.1% 1 1.7261 0.50 0.00 SELECT tbl
# 5 0x3F1024B96D9D469E 9.0001 0.7% 1 9.0001 0.00 0.00 SELECT blah
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== =============== ===== ========= ===== ==========
# 1 0xABE9508269335CD1 1349.0001 98.9% 1 1349.0001 0.00 DELETE forest
# 2 0xAC1BF726F2AB10C5 2.9042 0.2% 4 0.7261 0.03 SELECT foo
# 3 0xB79802214165F670 0.7261 0.1% 2 0.3631 0.73 INSERT tbl
# 4 0x1F9B2F47A843D460 1.7261 0.1% 1 1.7261 0.00 SELECT tbl
# 5 0x3F1024B96D9D469E 9.0001 0.7% 1 9.0001 0.00 SELECT blah

View File

@@ -1,6 +1,6 @@
# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1866 _____
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2009-08-05 13:00:27
# Attribute pct total min max avg 95% stddev median
@@ -38,7 +38,7 @@ DELETE FROM forest WHERE animal = 'dead'\G
select * from forest WHERE animal = 'dead'\G
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 934
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.03
# Scores: V/M = 0.03
# Query_time sparkline: | ^ |
# Time range: 2009-08-05 11:00:27 to 13:00:27
# Attribute pct total min max avg 95% stddev median
@@ -71,7 +71,7 @@ select * from forest WHERE animal = 'dead'\G
SELECT * FROM foo\G
# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1267 _____
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.73
# Scores: V/M = 0.73
# Query_time sparkline: | ^ ^ |
# Time range: all events occurred at 2009-08-05 12:00:27
# Attribute pct total min max avg 95% stddev median
@@ -102,7 +102,7 @@ SELECT * FROM foo\G
INSERT INTO tbl VALUES ('a', 'b')\G
# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 333 ______
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-08-05 11:00:27
# Attribute pct total min max avg 95% stddev median
@@ -132,7 +132,7 @@ INSERT INTO tbl VALUES ('a', 'b')\G
SELECT id FROM tbl WHERE id = 1\G
# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 625 ______
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-08-05 11:00:27
# Attribute pct total min max avg 95% stddev median
@@ -166,10 +166,10 @@ SELECT id FROM tbl WHERE id = 1\G
SELECT COUNT(*) FROM blah WHERE col > 2\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== =============== ===== ========= ==== ===== =====
# 1 0xABE9508269335CD1 1349.0001 98.9% 1 1349.0001 0.00 0.00 DELETE forest
# 2 0xAC1BF726F2AB10C5 2.9042 0.2% 4 0.7261 1.00 0.03 SELECT foo
# 3 0xB79802214165F670 0.7261 0.1% 2 0.3631 1.00 0.73 INSERT tbl
# 4 0x1F9B2F47A843D460 1.7261 0.1% 1 1.7261 0.50 0.00 SELECT tbl
# 5 0x3F1024B96D9D469E 9.0001 0.7% 1 9.0001 0.00 0.00 SELECT blah
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== =============== ===== ========= ===== ==========
# 1 0xABE9508269335CD1 1349.0001 98.9% 1 1349.0001 0.00 DELETE forest
# 2 0xAC1BF726F2AB10C5 2.9042 0.2% 4 0.7261 0.03 SELECT foo
# 3 0xB79802214165F670 0.7261 0.1% 2 0.3631 0.73 INSERT tbl
# 4 0x1F9B2F47A843D460 1.7261 0.1% 1 1.7261 0.00 SELECT tbl
# 5 0x3F1024B96D9D469E 9.0001 0.7% 1 9.0001 0.00 SELECT blah

View File

@@ -19,7 +19,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x727841EC88423713 at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -57,7 +57,7 @@ INSERT INTO db.v (m, b) VALUES ('', 'Exact')\G
# Query 2: 0 QPS, 0x concurrency, ID 0x9E892D4B16D7BFC2 at byte 525 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -88,7 +88,7 @@ INSERT INTO db.v (m, b) VALUES ('', 'Exact')\G
SELECT * FROM blah WHERE something = 'important'\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x727841EC88423713 0.0000 0.0% 1 0.0000 1.00 0.00 INSERT db.v
# 2 0x9E892D4B16D7BFC2 0.0000 0.0% 1 0.0000 1.00 0.00 SELECT blah
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===========
# 1 0x727841EC88423713 0.0000 0.0% 1 0.0000 0.00 INSERT db.v
# 2 0x9E892D4B16D7BFC2 0.0000 0.0% 1 0.0000 0.00 SELECT blah

View File

@@ -5,7 +5,7 @@
# Item 1: 0 QPS, 0x concurrency, ID 0xABCC9DEC8C43EEDC at byte 0 _________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2007-12-18 11:48:27
# Attribute pct total min max avg 95% stddev median
@@ -28,6 +28,6 @@
LOCK foo bar
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ======== ============= ===== ====== ==== ===== ============
# 1 0x 0.0010 100.0% 1 0.0010 1.00 0.00 LOCK foo bar
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ======== ============= ===== ====== ===== ============
# 1 0x 0.0010 100.0% 1 0.0010 0.00 LOCK foo bar

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x7CE9953EA3A36141 at byte 417 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-12-05 19:55:11
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x7CE9953EA3A36141 at byte 417 ______
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: all events occurred at 2009-12-05 19:55:11
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 1.33 QPS, 0.00x concurrency, ID 0x208AC308FD716D83 at byte 454
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2010-06-24 11:48:27 to 11:48:30
# Attribute pct total min max avg 95% stddev median
@@ -28,6 +28,6 @@
SELECT * FROM `products` ORDER BY name, shape asc\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ==========
# 1 0x208AC308FD716D83 0.0001 100.0% 4 0.0000 1.00 0.00 SELECT products
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ===============
# 1 0x208AC308FD716D83 0.0001 100.0% 4 0.0000 0.00 SELECT products

View File

@@ -10,16 +10,16 @@
# Query size 308 30 34 30.80 31.70 1.64 28.75
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== =============== ===== ======== ==== ===== ======
# 1 0x95AADD230F4EB56A 1000.0000 53.8% 2 500.0000 0.00 0.00 SELECT two
# 2 0x5081E1858C60FD05 500.0000 26.9% 1 500.0000 0.00 0.00 SELECT three
# 4 0x70E215C4BFED0080 50.0000 2.7% 5 10.0000 0.00 0.00 SELECT one
# MISC 0xMISC 310.0000 16.7% 2 155.0000 NS 0.0 <2 ITEMS>
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== =============== ===== ======== ===== ===========
# 1 0x95AADD230F4EB56A 1000.0000 53.8% 2 500.0000 0.00 SELECT two
# 2 0x5081E1858C60FD05 500.0000 26.9% 1 500.0000 0.00 SELECT three
# 4 0x70E215C4BFED0080 50.0000 2.7% 5 10.0000 0.00 SELECT one
# MISC 0xMISC 310.0000 16.7% 2 155.0000 0.0 <2 ITEMS>
# Query 1: 2 QPS, 1.00kx concurrency, ID 0x95AADD230F4EB56A at byte 886 __
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: 2010-06-24 11:48:34 to 11:48:35
# Attribute pct total min max avg 95% stddev median
@@ -47,7 +47,7 @@ SELECT two FROM two WHERE id=?\G
# Query 2: 0 QPS, 0x concurrency, ID 0x5081E1858C60FD05 at byte 1013 _____
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2010-06-24 11:48:35
# Attribute pct total min max avg 95% stddev median
@@ -75,7 +75,7 @@ SELECT three FROM three WHERE id=?\G
# Query 4: 1.25 QPS, 12.50x concurrency, ID 0x70E215C4BFED0080 at byte 633
# This item is included in the report because it matches --outliers.
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: 2010-06-24 11:48:21 to 11:48:25
# Attribute pct total min max avg 95% stddev median

View File

@@ -1,7 +1,7 @@
# Query 1: 0 QPS, 0x concurrency, ID 0x305E73C51188758F at byte 0 ________
# This item is included in the report because it matches --limit.
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^|
# Time range: all events occurred at 2010-06-24 11:48:00
# Attribute pct total min max avg 95% stddev median
@@ -29,6 +29,6 @@
UPDATE mybbl_MBMessage SET groupId = (select groupId from Group_ where name = 'Guest')\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============== ===== ======= ==== ===== ========
# 1 0x305E73C51188758F 10.0000 100.0% 1 10.0000 0.00 0.00 UPDATE SELECT mybbl_MBMessage Group_
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============== ===== ======= ===== =============
# 1 0x305E73C51188758F 10.0000 100.0% 1 10.0000 0.00 UPDATE SELECT mybbl_MBMessage Group_

View File

@@ -1,7 +1,7 @@
# Query 1: 0.20 QPS, 0.00x concurrency, ID 0xD989521B246E945B at byte 146
# This item is included in the report because it matches --limit.
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
# Scores: V/M = 0.00
# Query_time sparkline: | ^ |
# Time range: 2007-12-18 11:48:27 to 11:48:37
# Attribute pct total min max avg 95% stddev median
@@ -27,6 +27,6 @@
LOAD DATA INFILE '/tmp/bar.txt' INTO db.tbl\G
# Profile
# Rank Query ID Response time Calls R/Call Apdx V/M Item
# ==== ================== ============= ===== ====== ==== ===== ======
# 1 0xD989521B246E945B 0.0000 100.0% 2 0.0000 1.00 0.00 db.tbl
# Rank Query ID Response time Calls R/Call V/M Item
# ==== ================== ============= ===== ====== ===== ======
# 1 0xD989521B246E945B 0.0000 100.0% 2 0.0000 0.00 db.tbl

Some files were not shown because too many files have changed in this diff Show More