By default, SAS web access logs do not record the elapsed time in milliseconds that it takes to complete each web request.
Because SAS Fraud Management uses Red Hat Enterprise Linux (RHEL) Apache servers to support web services, regular Apache LogFormat parameters support the %D parameter to append the time in milliseconds that it takes to complete each web request.
If you have deployed custom logging, then you might have considerations other than just adding %D. If you have considerations other than just adding %D, defer to your web logging experts. Refer to your SAS/RHEL/Apache version documentation for information about the LogFormat settings.
Add %D to the httpd.conf format strings (like the example below, from a SAS Fraud Management test system). While the impact from this change should be negligible, SAS Technical Support still recommends thorough testing before deploying to production.
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b %D" common
<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b %D\"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>