7-61
User
Guide
for
the
Cisco
Application
Networking
Manager
5.2
OL-26572-01
Chapte
r
7
Configuring
Virtual
Servers
Configuring
Virtual
Servers
Ta
b
l
e
7-19
lists
the
parameter
expander
functions
that
you
can
use.
Max
Number
For
Parameter
Summary
Log
(Bytes)
Maximum
number
of
bytes
that
are
to
be
logged
for
each
parameter
value
i
n
the
parameter
summary
of
a
transaction
log
entry
in
the
statistics
log.
If
a
parameter
value
exceeds
this
limit,
it
is
truncated
at
the
specified
limit.
Valid
entries
are
0
to
10,000
bytes.
Specify
String
For
Grouping
Requests
String
that
the
ACE
is
to
use
to
sort
requests
for
AppScope
reporting.
The
string
can
contain
a
URL
regular
expression
that
defines
a
set
of
URLs
in
which
URLs
that
differ
only
by
their
query
parameters
are
to
be
treated
as
separate
URLs
in
AppScope
reports.
For
example,
to
define
a
string
that
is
used
to
identify
the
URLs
http://server/catalog.asp?region=asia
and
http://server/catalog.asp?region=america
as
two
separate
reporting
categories,
you
would
enter
http_query_param(region)
.
Valid
entries
contain
1
to
255
characters
and
can
contain
the
parameter
expander
functions
listed
in
Ta
b
l
e
7-19
.
Table
7-18
Application
Acceleration
and
Optimization
Additional
Configuration
Options
(continued)
Field
Description
Ta
b
l
e
7-19
Parameter
Expander
Functions
Variable
Description
$(
number
)
Expands
to
the
corresponding
matching
subexpression
(by
number
)
in
the
URL
pattern.
Subexpressions
are
marked
in
a
URL
pattern
using
parentheses
().
The
numbering
of
the
subexpressions
begins
with
1
and
is
the
number
of
the
left-parenthesis
“(“
counting
from
the
l
eft.
You
can
specify
any
positive
i
nteger
for
the
number.
$(0)
matches
the
entire
URL.
For
example,
if
the
URL
pattern
is
((http://server/.*)/(.*)/)a.jsp,
and
the
URL
that
matches
it
is
http://server/main/sub/a.jsp?category=shoes&session=99999,
then
the
following
are
correct:
$(0)
=
http://server/main/sub/a.jsp
$(1)
=
http://server/main/sub/
$(2)
=
http://server/main
$(3)
=
sub
If
the
specified
subexpression
does
not
exist
in
the
URL
pattern,
then
the
variable
expands
to
the
empty
string.
$http_query_string()
Expands
to
the
value
of
the
whole
query
string
in
the
URL.
For
example,
if
the
URL
is
http://myhost/dothis?param1=value1¶m2=value2,
then
the
following
is
correct:
$http_query_string()
=
pa
ram1=value1¶m2=value2
This
function
applies
to
both
GET
and
POST
requests.